ffca3c8e744cdbdf7c87316d26372ab4661ca713.svn-base 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import com.fasterxml.jackson.annotation.JsonFormat;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import cn.com.goldenwater.core.model.BaseBean;
  7. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  8. import org.springframework.format.annotation.DateTimeFormat;
  9. /**
  10. * entity:MeetMessageLikeShitList
  11. *
  12. * @author lune
  13. * @date 2019-7-23
  14. */
  15. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  16. public class MeetMessageLikeShitList extends BaseBean implements Serializable {
  17. @ApiModelProperty("主键ID")
  18. private String id;
  19. @ApiModelProperty("留言ID")
  20. private String messId;
  21. @ApiModelProperty("参会人员ID")
  22. private String persId;
  23. @ApiModelProperty("操作类型(1,点赞,2踩,3取消点赞,4取消踩,5问题同上,6,取消问题同上)")
  24. private String type;
  25. @ApiModelProperty("操作时间")
  26. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
  27. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
  28. private Date inTm;
  29. public MeetMessageLikeShitList() {
  30. }
  31. public String getId() {
  32. return id;
  33. }
  34. public void setId(String id) {
  35. this.id = id;
  36. }
  37. public String getMessId() {
  38. return messId;
  39. }
  40. public void setMessId(String messId) {
  41. this.messId = messId;
  42. }
  43. public String getPersId() {
  44. return persId;
  45. }
  46. public void setPersId(String persId) {
  47. this.persId = persId;
  48. }
  49. public String getType() {
  50. return type;
  51. }
  52. public void setType(String type) {
  53. this.type = type;
  54. }
  55. public Date getInTm() {
  56. return inTm;
  57. }
  58. public void setInTm(Date inTm) {
  59. this.inTm = inTm;
  60. }
  61. @Override
  62. public String toString() {
  63. return "MeetMessageLikeShitList [" + "id=" + id + ", messId=" + messId + ", persId=" + persId + ", type=" + type + ", inTm=" + inTm + "]";
  64. }
  65. }