| | |
| | | **/ |
| | | public class OwnerAppUserDto extends PageDto implements Serializable { |
| | | |
| | | public static final String APP_TYPE_APP = "APP";//app绑定业主 |
| | | public static final String APP_TYPE_WECHAT_MINA = "WECHAT_MINA";//小程序绑定业主 |
| | | public static final String APP_TYPE_WECHAT = "WECHAT";//公众号绑定业主 |
| | | public static final String STATE_AUDITING = "10000";// 审核中 |
| | | public static final String STATE_AUDIT_SUCCESS = "12000";//审核成功 |
| | | public static final String STATE_AUDIT_ERROR = "13000";//审核失败 |
| | | |
| | | private String idCard; |
| | | private String openId; |
| | | private String link; |
| | |
| | | private String appUserName; |
| | | private String communityName; |
| | | private String state; |
| | | private String stateName; |
| | | private String appUserId; |
| | | private String communityId; |
| | | private String appTypeCd; |
| | | private String memberId; |
| | | private String userId; |
| | | private String appType; |
| | | private String[] userIds; |
| | | |
| | | |
| | | private String[] states; |
| | | |
| | | |
| | | private Date createTime; |
| | |
| | | public void setStatusCd(String statusCd) { |
| | | this.statusCd = statusCd; |
| | | } |
| | | |
| | | public String[] getStates() { |
| | | return states; |
| | | } |
| | | |
| | | public void setStates(String[] states) { |
| | | this.states = states; |
| | | } |
| | | |
| | | public String getStateName() { |
| | | return stateName; |
| | | } |
| | | |
| | | public void setStateName(String stateName) { |
| | | this.stateName = stateName; |
| | | } |
| | | |
| | | public String getUserId() { |
| | | return userId; |
| | | } |
| | | |
| | | public void setUserId(String userId) { |
| | | this.userId = userId; |
| | | } |
| | | |
| | | public String[] getUserIds() { |
| | | return userIds; |
| | | } |
| | | |
| | | public void setUserIds(String[] userIds) { |
| | | this.userIds = userIds; |
| | | } |
| | | |
| | | public String getAppType() { |
| | | return appType; |
| | | } |
| | | |
| | | public void setAppType(String appType) { |
| | | this.appType = appType; |
| | | } |
| | | } |