|
|
@@ -0,0 +1,157 @@
|
|
|
+package com.mokamrp.privates.mapper.pangu.pojo;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.baomidou.mybatisplus.extension.activerecord.Model;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 盘古个微养号变现企微任务账户详情
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author leon
|
|
|
+ * @since 2021-11-09
|
|
|
+ */
|
|
|
+@TableName("pan_fosterwx_cash_schedule_task_mobile")
|
|
|
+public class FosterwxCashScheduleTaskMobile extends Model<FosterwxCashScheduleTaskMobile> {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * ID
|
|
|
+ */
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 任务id
|
|
|
+ */
|
|
|
+ private Integer taskId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分组
|
|
|
+ */
|
|
|
+ private Integer groupId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 账号id
|
|
|
+ */
|
|
|
+ private Integer mobileId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 状态(1:待发送;2:发送中;3:已发送;4:已过期;)
|
|
|
+ */
|
|
|
+ private Integer status;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ private LocalDateTime createAt;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 更新时间
|
|
|
+ */
|
|
|
+ private LocalDateTime updateAt;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private FosterwxCashScheduleTaskList fosterwxCashScheduleTaskList;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private FosterwxCashMobile fosterwxCashMobile;
|
|
|
+
|
|
|
+
|
|
|
+ public Integer getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Integer id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTaskId() {
|
|
|
+ return taskId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTaskId(Integer taskId) {
|
|
|
+ this.taskId = taskId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getGroupId() {
|
|
|
+ return groupId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGroupId(Integer groupId) {
|
|
|
+ this.groupId = groupId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMobileId() {
|
|
|
+ return mobileId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMobileId(Integer mobileId) {
|
|
|
+ this.mobileId = mobileId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getStatus() {
|
|
|
+ return status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStatus(Integer status) {
|
|
|
+ this.status = status;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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 "FosterwxCashScheduleTaskMobile{" +
|
|
|
+ "id=" + id +
|
|
|
+ ", taskId=" + taskId +
|
|
|
+ ", groupId=" + groupId +
|
|
|
+ ", mobileId=" + mobileId +
|
|
|
+ ", status=" + status +
|
|
|
+ ", createAt=" + createAt +
|
|
|
+ ", updateAt=" + updateAt +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+
|
|
|
+ public FosterwxCashScheduleTaskList getFosterwxCashScheduleTaskList() {
|
|
|
+ return fosterwxCashScheduleTaskList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFosterwxCashScheduleTaskList(FosterwxCashScheduleTaskList fosterwxCashScheduleTaskList) {
|
|
|
+ this.fosterwxCashScheduleTaskList = fosterwxCashScheduleTaskList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public FosterwxCashMobile getFosterwxCashMobile() {
|
|
|
+ return fosterwxCashMobile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFosterwxCashMobile(FosterwxCashMobile fosterwxCashMobile) {
|
|
|
+ this.fosterwxCashMobile = fosterwxCashMobile;
|
|
|
+ }
|
|
|
+}
|