|
|
@@ -0,0 +1,159 @@
|
|
|
+package com.mokamrp.privates.mapper.pojo;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.extension.activerecord.Model;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 盘古个微养号账号任务时间
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author leon
|
|
|
+ * @since 2021-08-26
|
|
|
+ */
|
|
|
+public class PanFosterwxMobileTaskTimeList extends Model<PanFosterwxMobileTaskTimeList> {
|
|
|
+
|
|
|
+ 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 String mobileCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 手机唯一编码(station_id+mobile_code)
|
|
|
+ */
|
|
|
+ private String mobileUnioCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 模板id
|
|
|
+ */
|
|
|
+ private Integer templateId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 任务开始时间
|
|
|
+ */
|
|
|
+ private LocalDateTime taskStartAt;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 任务结束时间
|
|
|
+ */
|
|
|
+ private LocalDateTime taskEndAt;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ 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 String getMobileCode() {
|
|
|
+ return mobileCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMobileCode(String mobileCode) {
|
|
|
+ this.mobileCode = mobileCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMobileUnioCode() {
|
|
|
+ return mobileUnioCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMobileUnioCode(String mobileUnioCode) {
|
|
|
+ this.mobileUnioCode = mobileUnioCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTemplateId() {
|
|
|
+ return templateId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTemplateId(Integer templateId) {
|
|
|
+ this.templateId = templateId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public LocalDateTime getTaskStartAt() {
|
|
|
+ return taskStartAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTaskStartAt(LocalDateTime taskStartAt) {
|
|
|
+ this.taskStartAt = taskStartAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public LocalDateTime getTaskEndAt() {
|
|
|
+ return taskEndAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTaskEndAt(LocalDateTime taskEndAt) {
|
|
|
+ this.taskEndAt = taskEndAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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 "PanFosterwxMobileTaskTimeList{" +
|
|
|
+ "id=" + id +
|
|
|
+ ", stationId=" + stationId +
|
|
|
+ ", mobileCode=" + mobileCode +
|
|
|
+ ", mobileUnioCode=" + mobileUnioCode +
|
|
|
+ ", templateId=" + templateId +
|
|
|
+ ", taskStartAt=" + taskStartAt +
|
|
|
+ ", taskEndAt=" + taskEndAt +
|
|
|
+ ", createAt=" + createAt +
|
|
|
+ ", updateAt=" + updateAt +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+}
|