#431 WxMpUser的sex相关字段调整:原sex变量改为sexDesc,原sexId改为sex

This commit is contained in:
Binary Wang
2018-01-27 18:32:16 +08:00
parent 2eb3fc5ed1
commit 5bd2d209db
2 changed files with 40 additions and 28 deletions

View File

@@ -12,7 +12,7 @@ import java.lang.reflect.Type;
import java.util.List;
/**
* 微信用户信息
* 微信用户信息.
*
* @author chanjarster
*/
@@ -23,7 +23,14 @@ public class WxMpUser implements Serializable {
private Boolean subscribe;
private String openId;
private String nickname;
private String sex;
/**
* 性别描述信息:男、女、未知等.
*/
private String sexDesc;
/**
* 性别表示12等数字.
*/
private Integer sex;
private String language;
private String city;
private String province;
@@ -40,12 +47,12 @@ public class WxMpUser implements Serializable {
* </pre>
*/
private String unionId;
private Integer sexId;
private String remark;
private Integer groupId;
private Long[] tagIds;
/**
* 用户特权信息json 数组如微信沃卡用户为chinaunicom
* 用户特权信息json 数组如微信沃卡用户为chinaunicom.
*/
private String[] privileges;