|
|
@@ -28,7 +28,7 @@ public class FosterwxMobile extends Model<FosterwxMobile> {
|
|
|
/**
|
|
|
* ID
|
|
|
*/
|
|
|
- @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
private Integer id;
|
|
|
|
|
|
/**
|
|
|
@@ -117,6 +117,11 @@ public class FosterwxMobile extends Model<FosterwxMobile> {
|
|
|
private LocalDateTime wxRegisterAt;
|
|
|
|
|
|
/**
|
|
|
+ * 微信appid
|
|
|
+ */
|
|
|
+ private String wxAppid;
|
|
|
+
|
|
|
+ /**
|
|
|
* 银行卡号
|
|
|
*/
|
|
|
private String bankCardNo;
|
|
|
@@ -150,6 +155,11 @@ public class FosterwxMobile extends Model<FosterwxMobile> {
|
|
|
private LocalDateTime taskStartAt;
|
|
|
|
|
|
/**
|
|
|
+ * 个微二维码
|
|
|
+ */
|
|
|
+ private String codeUrl;
|
|
|
+
|
|
|
+ /**
|
|
|
* 创建时间
|
|
|
*/
|
|
|
private LocalDateTime createAt;
|
|
|
@@ -304,6 +314,14 @@ public class FosterwxMobile extends Model<FosterwxMobile> {
|
|
|
this.wxRegisterAt = wxRegisterAt;
|
|
|
}
|
|
|
|
|
|
+ public String getWxAppid() {
|
|
|
+ return wxAppid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWxAppid(String wxAppid) {
|
|
|
+ this.wxAppid = wxAppid;
|
|
|
+ }
|
|
|
+
|
|
|
public String getBankCardNo() {
|
|
|
return bankCardNo;
|
|
|
}
|
|
|
@@ -352,6 +370,14 @@ public class FosterwxMobile extends Model<FosterwxMobile> {
|
|
|
this.taskStartAt = taskStartAt;
|
|
|
}
|
|
|
|
|
|
+ public String getCodeUrl() {
|
|
|
+ return codeUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCodeUrl(String codeUrl) {
|
|
|
+ this.codeUrl = codeUrl;
|
|
|
+ }
|
|
|
+
|
|
|
public LocalDateTime getCreateAt() {
|
|
|
return createAt;
|
|
|
}
|
|
|
@@ -390,18 +416,20 @@ public class FosterwxMobile extends Model<FosterwxMobile> {
|
|
|
", mobileIdentityCardNo=" + mobileIdentityCardNo +
|
|
|
", status=" + status +
|
|
|
", wxStatus=" + wxStatus +
|
|
|
- ", wxPassword=" + wxPassword +
|
|
|
- ", wxRealName=" + wxRealName +
|
|
|
- ", wxIdentityCardNo=" + wxIdentityCardNo +
|
|
|
- ", wxRegisterAt=" + wxRegisterAt +
|
|
|
- ", bankCardNo=" + bankCardNo +
|
|
|
- ", bankCardMobileNo=" + bankCardMobileNo +
|
|
|
- ", workWxCorp=" + workWxCorp +
|
|
|
- ", workWxRegisterAt=" + workWxRegisterAt +
|
|
|
- ", workWxStatus=" + workWxStatus +
|
|
|
- ", taskStartAt=" + taskStartAt +
|
|
|
- ", createAt=" + createAt +
|
|
|
- ", updateAt=" + updateAt +
|
|
|
- "}";
|
|
|
+ ", wxPassword=" + wxPassword +
|
|
|
+ ", wxRealName=" + wxRealName +
|
|
|
+ ", wxIdentityCardNo=" + wxIdentityCardNo +
|
|
|
+ ", wxRegisterAt=" + wxRegisterAt +
|
|
|
+ ", wxAppid=" + wxAppid +
|
|
|
+ ", bankCardNo=" + bankCardNo +
|
|
|
+ ", bankCardMobileNo=" + bankCardMobileNo +
|
|
|
+ ", workWxCorp=" + workWxCorp +
|
|
|
+ ", workWxRegisterAt=" + workWxRegisterAt +
|
|
|
+ ", workWxStatus=" + workWxStatus +
|
|
|
+ ", taskStartAt=" + taskStartAt +
|
|
|
+ ", codeUrl=" + codeUrl +
|
|
|
+ ", createAt=" + createAt +
|
|
|
+ ", updateAt=" + updateAt +
|
|
|
+ "}";
|
|
|
}
|
|
|
}
|