|
@@ -0,0 +1,393 @@
|
|
|
|
|
+package com.mokamrp.privates.mapper.pangu.pojo;
|
|
|
|
|
+
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
|
+import com.baomidou.mybatisplus.extension.activerecord.Model;
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
+import lombok.Data;
|
|
|
|
|
+
|
|
|
|
|
+import java.time.LocalDateTime;
|
|
|
|
|
+import java.io.Serializable;
|
|
|
|
|
+import java.util.List;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * <p>
|
|
|
|
|
+ * 盘古个微养号手机库
|
|
|
|
|
+ * </p>
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author leon
|
|
|
|
|
+ * @since 2021-07-22
|
|
|
|
|
+ */
|
|
|
|
|
+@Data
|
|
|
|
|
+@TableName("pan_fosterwx_mobile")
|
|
|
|
|
+public class FosterwxMobile extends Model<FosterwxMobile> {
|
|
|
|
|
+
|
|
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * ID
|
|
|
|
|
+ */
|
|
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
|
|
+ private Integer id;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 站点id(pan_fosterwx_station.id)
|
|
|
|
|
+ */
|
|
|
|
|
+ private Integer stationId;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 手机编号
|
|
|
|
|
+ */
|
|
|
|
|
+ private Integer mobileCode;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 手机号码
|
|
|
|
|
+ */
|
|
|
|
|
+ private String mobileNo;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 手机运营商(1.中国移动2.中国联通3.中国电信4.物联卡5.铁通6.其他)
|
|
|
|
|
+ */
|
|
|
|
|
+ private Integer mobileOperator;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 手机开卡时间
|
|
|
|
|
+ */
|
|
|
|
|
+ private LocalDateTime mobileCreateAt;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 手机预支付金额
|
|
|
|
|
+ */
|
|
|
|
|
+ private Integer mobileAdvancePayAmt;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 手机套餐
|
|
|
|
|
+ */
|
|
|
|
|
+ private String mobileCombo;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 手机套餐包含流量
|
|
|
|
|
+ */
|
|
|
|
|
+ private String mobileComboFlow;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 手机实名姓名
|
|
|
|
|
+ */
|
|
|
|
|
+ private String mobileRealName;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 手机身份证号码
|
|
|
|
|
+ */
|
|
|
|
|
+ private String mobileIdentityCardNo;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 状态(0.——1.养号中2.已验收3.运营中4.封禁5.验收未运营)
|
|
|
|
|
+ */
|
|
|
|
|
+ private Integer status;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 微信状态(1.正常2.封禁)
|
|
|
|
|
+ */
|
|
|
|
|
+ private Integer wxStatus;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 微信密码
|
|
|
|
|
+ */
|
|
|
|
|
+ private String wxPassword;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 微信实名姓名
|
|
|
|
|
+ */
|
|
|
|
|
+ private String wxRealName;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 微信身份证号码
|
|
|
|
|
+ */
|
|
|
|
|
+ private String wxIdentityCardNo;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 微信注册时间
|
|
|
|
|
+ */
|
|
|
|
|
+ private LocalDateTime wxRegisterAt;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 银行卡号
|
|
|
|
|
+ */
|
|
|
|
|
+ private String bankCardNo;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 银行卡手机号码
|
|
|
|
|
+ */
|
|
|
|
|
+ private String bankCardMobileNo;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 企业微信主体
|
|
|
|
|
+ */
|
|
|
|
|
+ private String workWxCorp;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 企业微信注册时间
|
|
|
|
|
+ */
|
|
|
|
|
+ private LocalDateTime workWxRegisterAt;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 企业微信状态(1.正常2.封禁)
|
|
|
|
|
+ */
|
|
|
|
|
+ private Integer workWxStatus;
|
|
|
|
|
+
|
|
|
|
|
+ @TableField(exist = false)
|
|
|
|
|
+ private List<FosterwxMobileWxfriend> friend;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 任务开始时间
|
|
|
|
|
+ */
|
|
|
|
|
+ private LocalDateTime taskStartAt;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 创建时间
|
|
|
|
|
+ */
|
|
|
|
|
+ private LocalDateTime createAt;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 更新时间
|
|
|
|
|
+ */
|
|
|
|
|
+ private LocalDateTime updateAt;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getId() {
|
|
|
|
|
+ return id;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setId(Integer id) {
|
|
|
|
|
+ this.id = id;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getStationId() {
|
|
|
|
|
+ return stationId;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setStationId(Integer stationId) {
|
|
|
|
|
+ this.stationId = stationId;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getMobileCode() {
|
|
|
|
|
+ return mobileCode;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setMobileCode(Integer mobileCode) {
|
|
|
|
|
+ this.mobileCode = mobileCode;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getMobileNo() {
|
|
|
|
|
+ return mobileNo;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setMobileNo(String mobileNo) {
|
|
|
|
|
+ this.mobileNo = mobileNo;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getMobileOperator() {
|
|
|
|
|
+ return mobileOperator;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setMobileOperator(Integer mobileOperator) {
|
|
|
|
|
+ this.mobileOperator = mobileOperator;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public LocalDateTime getMobileCreateAt() {
|
|
|
|
|
+ return mobileCreateAt;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setMobileCreateAt(LocalDateTime mobileCreateAt) {
|
|
|
|
|
+ this.mobileCreateAt = mobileCreateAt;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getMobileAdvancePayAmt() {
|
|
|
|
|
+ return mobileAdvancePayAmt;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setMobileAdvancePayAmt(Integer mobileAdvancePayAmt) {
|
|
|
|
|
+ this.mobileAdvancePayAmt = mobileAdvancePayAmt;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getMobileCombo() {
|
|
|
|
|
+ return mobileCombo;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setMobileCombo(String mobileCombo) {
|
|
|
|
|
+ this.mobileCombo = mobileCombo;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getMobileComboFlow() {
|
|
|
|
|
+ return mobileComboFlow;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setMobileComboFlow(String mobileComboFlow) {
|
|
|
|
|
+ this.mobileComboFlow = mobileComboFlow;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getMobileRealName() {
|
|
|
|
|
+ return mobileRealName;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setMobileRealName(String mobileRealName) {
|
|
|
|
|
+ this.mobileRealName = mobileRealName;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getMobileIdentityCardNo() {
|
|
|
|
|
+ return mobileIdentityCardNo;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setMobileIdentityCardNo(String mobileIdentityCardNo) {
|
|
|
|
|
+ this.mobileIdentityCardNo = mobileIdentityCardNo;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getStatus() {
|
|
|
|
|
+ return status;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setStatus(Integer status) {
|
|
|
|
|
+ this.status = status;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getWxStatus() {
|
|
|
|
|
+ return wxStatus;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setWxStatus(Integer wxStatus) {
|
|
|
|
|
+ this.wxStatus = wxStatus;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getWxPassword() {
|
|
|
|
|
+ return wxPassword;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setWxPassword(String wxPassword) {
|
|
|
|
|
+ this.wxPassword = wxPassword;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getWxRealName() {
|
|
|
|
|
+ return wxRealName;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setWxRealName(String wxRealName) {
|
|
|
|
|
+ this.wxRealName = wxRealName;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getWxIdentityCardNo() {
|
|
|
|
|
+ return wxIdentityCardNo;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setWxIdentityCardNo(String wxIdentityCardNo) {
|
|
|
|
|
+ this.wxIdentityCardNo = wxIdentityCardNo;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public LocalDateTime getWxRegisterAt() {
|
|
|
|
|
+ return wxRegisterAt;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setWxRegisterAt(LocalDateTime wxRegisterAt) {
|
|
|
|
|
+ this.wxRegisterAt = wxRegisterAt;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getBankCardNo() {
|
|
|
|
|
+ return bankCardNo;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setBankCardNo(String bankCardNo) {
|
|
|
|
|
+ this.bankCardNo = bankCardNo;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getBankCardMobileNo() {
|
|
|
|
|
+ return bankCardMobileNo;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setBankCardMobileNo(String bankCardMobileNo) {
|
|
|
|
|
+ this.bankCardMobileNo = bankCardMobileNo;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getWorkWxCorp() {
|
|
|
|
|
+ return workWxCorp;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setWorkWxCorp(String workWxCorp) {
|
|
|
|
|
+ this.workWxCorp = workWxCorp;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public LocalDateTime getWorkWxRegisterAt() {
|
|
|
|
|
+ return workWxRegisterAt;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setWorkWxRegisterAt(LocalDateTime workWxRegisterAt) {
|
|
|
|
|
+ this.workWxRegisterAt = workWxRegisterAt;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getWorkWxStatus() {
|
|
|
|
|
+ return workWxStatus;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setWorkWxStatus(Integer workWxStatus) {
|
|
|
|
|
+ this.workWxStatus = workWxStatus;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public LocalDateTime getTaskStartAt() {
|
|
|
|
|
+ return taskStartAt;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setTaskStartAt(LocalDateTime taskStartAt) {
|
|
|
|
|
+ this.taskStartAt = taskStartAt;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public LocalDateTime getCreateAt() {
|
|
|
|
|
+ return createAt;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setCreateAt(LocalDateTime createAt) {
|
|
|
|
|
+ this.createAt = createAt;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public LocalDateTime getUpdateAt() {
|
|
|
|
|
+ return updateAt;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setUpdateAt(LocalDateTime updateAt) {
|
|
|
|
|
+ this.updateAt = updateAt;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @Override
|
|
|
|
|
+ protected Serializable pkVal() {
|
|
|
|
|
+ return this.id;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public String toString() {
|
|
|
|
|
+ return "FosterwxMobile{" +
|
|
|
|
|
+ "id=" + id +
|
|
|
|
|
+ ", stationId=" + stationId +
|
|
|
|
|
+ ", mobileCode=" + mobileCode +
|
|
|
|
|
+ ", mobileNo=" + mobileNo +
|
|
|
|
|
+ ", mobileOperator=" + mobileOperator +
|
|
|
|
|
+ ", mobileCreateAt=" + mobileCreateAt +
|
|
|
|
|
+ ", mobileAdvancePayAmt=" + mobileAdvancePayAmt +
|
|
|
|
|
+ ", mobileCombo=" + mobileCombo +
|
|
|
|
|
+ ", mobileComboFlow=" + mobileComboFlow +
|
|
|
|
|
+ ", mobileRealName=" + mobileRealName +
|
|
|
|
|
+ ", 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 +
|
|
|
|
|
+ "}";
|
|
|
|
|
+ }
|
|
|
|
|
+}
|