Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
🎨 添加注释
  • Loading branch information
zhongjun96 committed Apr 21, 2022
commit b20905a082b78749b5beff1e782e5d1aac3b497a
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
public class WxCpExportResult extends WxCpBaseResp {
private static final long serialVersionUID = -8673839248829238966L;


/**
* 任务状态:0-未处理,1-处理中,2-完成,3-异常失败
*/
private Integer status;

@SerializedName("data_list")
Expand All @@ -28,10 +30,19 @@ public class WxCpExportResult extends WxCpBaseResp {
@Data
public static class ExportData {

/**
* 数据下载链接,支持指定Range头部分段下载。有效期2个小时
*/
private String url;

/**
* 密文数据大小
*/
private Integer size;

/**
* 密文数据md5
*/
private String md5;
}
}