|
|
@@ -0,0 +1,301 @@
|
|
|
+package com.mokamrp.privates.mapper.pangu.pojo;
|
|
|
+
|
|
|
+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 java.time.LocalDateTime;
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 盘古微信变现任务列表
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author leon
|
|
|
+ * @since 2021-10-08
|
|
|
+ */
|
|
|
+@TableName("pan_fosterwx_cash_task_list")
|
|
|
+public class FosterwxCashTaskList extends Model<FosterwxCashTaskList> {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * id
|
|
|
+ */
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 模板id
|
|
|
+ */
|
|
|
+ private Integer templateId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 任务类型(1.发文-小程序卡片2.发文-图文3.小程序4.链接)
|
|
|
+ */
|
|
|
+ private Integer taskType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 任务名称
|
|
|
+ */
|
|
|
+ private String taskName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 发文标题
|
|
|
+ */
|
|
|
+ private String title;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 发文封面图
|
|
|
+ */
|
|
|
+ private String image;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 小程序类型(关联珊瑚云小程序类型)
|
|
|
+ */
|
|
|
+ private Integer boxType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 珊瑚云视频id
|
|
|
+ */
|
|
|
+ private Integer videoId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 珊瑚云标签id
|
|
|
+ */
|
|
|
+ private Integer tagId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 卡片封面图
|
|
|
+ */
|
|
|
+ private String cardImage;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 链接
|
|
|
+ */
|
|
|
+ private String url;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 图文富文本内容
|
|
|
+ */
|
|
|
+ private String richTxtBody;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 任务描述
|
|
|
+ */
|
|
|
+ private String remark;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 发送时间
|
|
|
+ */
|
|
|
+ private LocalDateTime sendAt;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除标志
|
|
|
+ */
|
|
|
+ private Integer delFlg;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建人
|
|
|
+ */
|
|
|
+ private Integer createUid;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 更新人
|
|
|
+ */
|
|
|
+ private Integer updateUid;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ private LocalDateTime createAt;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 更新时间
|
|
|
+ */
|
|
|
+ private LocalDateTime updateAt;
|
|
|
+
|
|
|
+
|
|
|
+ public Integer getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Integer id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTemplateId() {
|
|
|
+ return templateId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTemplateId(Integer templateId) {
|
|
|
+ this.templateId = templateId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTaskType() {
|
|
|
+ return taskType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTaskType(Integer taskType) {
|
|
|
+ this.taskType = taskType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTaskName() {
|
|
|
+ return taskName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTaskName(String taskName) {
|
|
|
+ this.taskName = taskName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTitle() {
|
|
|
+ return title;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTitle(String title) {
|
|
|
+ this.title = title;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getImage() {
|
|
|
+ return image;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setImage(String image) {
|
|
|
+ this.image = image;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getBoxType() {
|
|
|
+ return boxType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBoxType(Integer boxType) {
|
|
|
+ this.boxType = boxType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getVideoId() {
|
|
|
+ return videoId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setVideoId(Integer videoId) {
|
|
|
+ this.videoId = videoId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTagId() {
|
|
|
+ return tagId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTagId(Integer tagId) {
|
|
|
+ this.tagId = tagId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCardImage() {
|
|
|
+ return cardImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCardImage(String cardImage) {
|
|
|
+ this.cardImage = cardImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUrl() {
|
|
|
+ return url;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl(String url) {
|
|
|
+ this.url = url;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRichTxtBody() {
|
|
|
+ return richTxtBody;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRichTxtBody(String richTxtBody) {
|
|
|
+ this.richTxtBody = richTxtBody;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRemark() {
|
|
|
+ return remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRemark(String remark) {
|
|
|
+ this.remark = remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ public LocalDateTime getSendAt() {
|
|
|
+ return sendAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSendAt(LocalDateTime sendAt) {
|
|
|
+ this.sendAt = sendAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getDelFlg() {
|
|
|
+ return delFlg;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDelFlg(Integer delFlg) {
|
|
|
+ this.delFlg = delFlg;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCreateUid() {
|
|
|
+ return createUid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateUid(Integer createUid) {
|
|
|
+ this.createUid = createUid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getUpdateUid() {
|
|
|
+ return updateUid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateUid(Integer updateUid) {
|
|
|
+ this.updateUid = updateUid;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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 "FosterwxCashTaskList{" +
|
|
|
+ "id=" + id +
|
|
|
+ ", templateId=" + templateId +
|
|
|
+ ", taskType=" + taskType +
|
|
|
+ ", taskName=" + taskName +
|
|
|
+ ", title=" + title +
|
|
|
+ ", image=" + image +
|
|
|
+ ", boxType=" + boxType +
|
|
|
+ ", videoId=" + videoId +
|
|
|
+ ", tagId=" + tagId +
|
|
|
+ ", cardImage=" + cardImage +
|
|
|
+ ", url=" + url +
|
|
|
+ ", richTxtBody=" + richTxtBody +
|
|
|
+ ", remark=" + remark +
|
|
|
+ ", sendAt=" + sendAt +
|
|
|
+ ", delFlg=" + delFlg +
|
|
|
+ ", createUid=" + createUid +
|
|
|
+ ", updateUid=" + updateUid +
|
|
|
+ ", createAt=" + createAt +
|
|
|
+ ", updateAt=" + updateAt +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+}
|