From 81da61b828e29b7745e1382dfbbaeb685dc083ef Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期二, 23 一月 2024 17:17:55 +0800 Subject: [PATCH] 抖音转链修改 --- fanli/src/main/java/com/yeshi/fanli/entity/bus/msg/MsgDeviceReadState.java | 224 +++++++++++++++++++++++++++++-------------------------- 1 files changed, 117 insertions(+), 107 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/bus/msg/MsgDeviceReadState.java b/fanli/src/main/java/com/yeshi/fanli/entity/bus/msg/MsgDeviceReadState.java index 4445bc1..d75a2b1 100644 --- a/fanli/src/main/java/com/yeshi/fanli/entity/bus/msg/MsgDeviceReadState.java +++ b/fanli/src/main/java/com/yeshi/fanli/entity/bus/msg/MsgDeviceReadState.java @@ -1,107 +1,117 @@ -package com.yeshi.fanli.entity.bus.msg; - -import java.util.Date; - -import org.yeshi.utils.mybatis.Column; -import org.yeshi.utils.mybatis.Table; - -/* - *璁惧娑堟伅鐘舵�佸瓨鍌� - */ -@Table("yeshi_ec_msg_device_read_state") -public class MsgDeviceReadState { - public static String TYPE_ZHUSHOU = "zhushou";// 杩斿埄鍒稿皬鍔╂墜 - public static String TYPE_RECOMMEND = "recommend";// 鎺ㄨ崘 - public static String TYPE_KEFU = "kefu"; - - @Column(name = "mdrs_id") - private Long id; - @Column(name = "mdrs_device") - private String device; - @Column(name = "mdrs_platform") - private Integer platform; - @Column(name = "mdrs_type") - private String type; - @Column(name = "mdrs_read_time") - private Date readTime; - @Column(name = "mdrs_unread_count") - private Integer unReadCount; - @Column(name = "mdrs_latest_content") - private String latestContent;//鏈�杩戠殑鏈娑堟伅 - @Column(name = "mdrs_createtime") - private Date createTime; - @Column(name = "mdrs_update_time") - private Date updateTime; - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public String getDevice() { - return device; - } - - public void setDevice(String device) { - this.device = device; - } - - public Integer getPlatform() { - return platform; - } - - public void setPlatform(Integer platform) { - this.platform = platform; - } - - public String getType() { - return type; - } - - public void setType(String type) { - this.type = type; - } - - public Date getReadTime() { - return readTime; - } - - public void setReadTime(Date readTime) { - this.readTime = readTime; - } - - public Integer getUnReadCount() { - return unReadCount; - } - - public void setUnReadCount(Integer unReadCount) { - this.unReadCount = unReadCount; - } - - public Date getCreateTime() { - return createTime; - } - - public void setCreateTime(Date createTime) { - this.createTime = createTime; - } - - public Date getUpdateTime() { - return updateTime; - } - - public void setUpdateTime(Date updateTime) { - this.updateTime = updateTime; - } - - public String getLatestContent() { - return latestContent; - } - - public void setLatestContent(String latestContent) { - this.latestContent = latestContent; - } -} +package com.yeshi.fanli.entity.bus.msg; + +import java.util.Date; + +import org.yeshi.utils.generater.mybatis.Column; +import org.yeshi.utils.generater.mybatis.Table; + +/* + *璁惧娑堟伅鐘舵�佸瓨鍌� + */ +@Table("yeshi_ec_msg_device_read_state") +public class MsgDeviceReadState { + public static String TYPE_ZHUSHOU = "zhushou";// 鏉挎牀蹇渷灏忓姪鎵� + public static String TYPE_RECOMMEND = "recommend";// 鎺ㄨ崘 + public static String TYPE_KEFU = "kefu"; + + @Column(name = "mdrs_id") + private Long id; + @Column(name = "mdrs_device") + private String device; + @Column(name = "mdrs_platform") + private Integer platform; + @Column(name = "mdrs_type") + private String type; + @Column(name = "mdrs_read_time") + private Date readTime; + @Column(name = "mdrs_unread_count") + private Integer unReadCount; + @Column(name = "mdrs_latest_content") + private String latestContent;// 鏈�杩戠殑鏈娑堟伅 + @Column(name = "mdrs_latest_content_time") + private Date latestContentTime;// 鏈�杩戠殑鏈娑堟伅 + @Column(name = "mdrs_createtime") + private Date createTime; + @Column(name = "mdrs_update_time") + private Date updateTime; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getDevice() { + return device; + } + + public void setDevice(String device) { + this.device = device; + } + + public Integer getPlatform() { + return platform; + } + + public void setPlatform(Integer platform) { + this.platform = platform; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public Date getReadTime() { + return readTime; + } + + public void setReadTime(Date readTime) { + this.readTime = readTime; + } + + public Integer getUnReadCount() { + return unReadCount; + } + + public void setUnReadCount(Integer unReadCount) { + this.unReadCount = unReadCount; + } + + public Date getCreateTime() { + return createTime; + } + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + } + + public Date getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(Date updateTime) { + this.updateTime = updateTime; + } + + public String getLatestContent() { + return latestContent; + } + + public void setLatestContent(String latestContent) { + this.latestContent = latestContent; + } + + public Date getLatestContentTime() { + return latestContentTime; + } + + public void setLatestContentTime(Date latestContentTime) { + this.latestContentTime = latestContentTime; + } +} -- Gitblit v1.8.0