88e030b7
王彪总
init project
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
package com.java110.dto.user;
import com.java110.dto.PageDto;
import java.io.Serializable;
public class UserAttrDto extends PageDto implements Serializable {
public static final String SPEC_KEY = "100202061602";//用户临时key
public static final String SPEC_OPEN_ID = "100201911001";//用户微信OPENID
public static final String SPEC_UNION_ID = "100201911002";//用户微信UNIONID
public static final String SPEC_MALL_OPEN_ID = "100201911003"; // 商城openId
public static final String SPEC_PROPERTY_USER_ID = "100202106001";//物业系统用户ID
public static final String SPEC_ID_CARD = "100202406002"; // 身份证号
private String attrId;
private String userId;
private String specCd;
private String specCdName;
private String value;
private String createTime;
private String statusCd;
public String getAttrId() {
return attrId;
}
public void setAttrId(String attrId) {
this.attrId = attrId;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getSpecCd() {
return specCd;
}
public void setSpecCd(String specCd) {
this.specCd = specCd;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getStatusCd() {
return statusCd;
}
public void setStatusCd(String statusCd) {
this.statusCd = statusCd;
}
public String getSpecCdName() {
return specCdName;
}
public void setSpecCdName(String specCdName) {
this.specCdName = specCdName;
}
}
|