mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-06-28 13:16:19 +08:00
🐛 修复部分字段定义类型错误
Co-authored-by: xiaoqiang <spark-more@qq.com>
This commit is contained in:
parent
a25c48e3d6
commit
fcfee0a068
@ -44,7 +44,7 @@ public class AuthRecordResult implements Serializable {
|
|||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
@SerializedName(value = "mchid")
|
@SerializedName(value = "mchid")
|
||||||
private Integer mchid;
|
private String mchid;
|
||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
* 字段名:子商户号
|
* 字段名:子商户号
|
||||||
@ -57,7 +57,7 @@ public class AuthRecordResult implements Serializable {
|
|||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
@SerializedName(value = "sub_mchid")
|
@SerializedName(value = "sub_mchid")
|
||||||
private Integer subMchid;
|
private String subMchid;
|
||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
* 字段名:用户标识
|
* 字段名:用户标识
|
||||||
@ -70,7 +70,7 @@ public class AuthRecordResult implements Serializable {
|
|||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
@SerializedName(value = "openid")
|
@SerializedName(value = "openid")
|
||||||
private Integer openid;
|
private String openid;
|
||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
* 字段名:核身渠道
|
* 字段名:核身渠道
|
||||||
@ -85,7 +85,7 @@ public class AuthRecordResult implements Serializable {
|
|||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
@SerializedName(value = "authenticate_scene")
|
@SerializedName(value = "authenticate_scene")
|
||||||
private Integer authenticateScene;
|
private String authenticateScene;
|
||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
* 字段名:核身渠道标识
|
* 字段名:核身渠道标识
|
||||||
@ -98,7 +98,7 @@ public class AuthRecordResult implements Serializable {
|
|||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
@SerializedName(value = "authenticate_source")
|
@SerializedName(value = "authenticate_source")
|
||||||
private Integer authenticateSource;
|
private String authenticateSource;
|
||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
* 字段名:项目名称
|
* 字段名:项目名称
|
||||||
@ -111,7 +111,7 @@ public class AuthRecordResult implements Serializable {
|
|||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
@SerializedName(value = "project_name")
|
@SerializedName(value = "project_name")
|
||||||
private Integer projectName;
|
private String projectName;
|
||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
* 字段名:单位名称
|
* 字段名:单位名称
|
||||||
|
@ -235,5 +235,5 @@ public class BatchDetailsResult implements Serializable {
|
|||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
@SerializedName(value = "update_time")
|
@SerializedName(value = "update_time")
|
||||||
private Date updateTime;
|
private String updateTime;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user