| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import io.swagger.annotations.ApiModelProperty;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import org.springframework.format.annotation.DateTimeFormat;
- /**
- * entity:MeetMessageLikeShitList
- *
- * @author lune
- * @date 2019-7-23
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class MeetMessageLikeShitList extends BaseBean implements Serializable {
- @ApiModelProperty("主键ID")
- private String id;
- @ApiModelProperty("留言ID")
- private String messId;
- @ApiModelProperty("参会人员ID")
- private String persId;
- @ApiModelProperty("操作类型(1,点赞,2踩,3取消点赞,4取消踩,5问题同上,6,取消问题同上)")
- private String type;
- @ApiModelProperty("操作时间")
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
- private Date inTm;
- public MeetMessageLikeShitList() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getMessId() {
- return messId;
- }
- public void setMessId(String messId) {
- this.messId = messId;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public Date getInTm() {
- return inTm;
- }
- public void setInTm(Date inTm) {
- this.inTm = inTm;
- }
- @Override
- public String toString() {
- return "MeetMessageLikeShitList [" + "id=" + id + ", messId=" + messId + ", persId=" + persId + ", type=" + type + ", inTm=" + inTm + "]";
- }
- }
|