Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static class RecordData implements Serializable {
* </pre>
*/
@SerializedName(value = "mchid")
private Integer mchid;
private String mchid;
/**
* <pre>
* 字段名:子商户号
Expand All @@ -57,7 +57,7 @@ public static class RecordData implements Serializable {
* </pre>
*/
@SerializedName(value = "sub_mchid")
private Integer subMchid;
private String subMchid;
/**
* <pre>
* 字段名:用户标识
Expand All @@ -70,7 +70,7 @@ public static class RecordData implements Serializable {
* </pre>
*/
@SerializedName(value = "openid")
private Integer openid;
private String openid;
/**
* <pre>
* 字段名:核身渠道
Expand All @@ -85,7 +85,7 @@ public static class RecordData implements Serializable {
* </pre>
*/
@SerializedName(value = "authenticate_scene")
private Integer authenticateScene;
private String authenticateScene;
/**
* <pre>
* 字段名:核身渠道标识
Expand All @@ -98,7 +98,7 @@ public static class RecordData implements Serializable {
* </pre>
*/
@SerializedName(value = "authenticate_source")
private Integer authenticateSource;
private String authenticateSource;
/**
* <pre>
* 字段名:项目名称
Expand All @@ -111,7 +111,7 @@ public static class RecordData implements Serializable {
* </pre>
*/
@SerializedName(value = "project_name")
private Integer projectName;
private String projectName;
/**
* <pre>
* 字段名:单位名称
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,5 +235,5 @@ public String toString() {
* </pre>
*/
@SerializedName(value = "update_time")
private Date updateTime;
private String updateTime;
}