46319dfc99b6f189526cd71e2b68a302c292fafe.svn-base 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * entity:ExtWeiXinMessage
  9. *
  10. * @author lhc
  11. * @date 2023-10-18
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class ExtWeiXinMessage extends BaseBean implements Serializable {
  15. // ID
  16. @ApiModelProperty(value = "ID", name = "id")
  17. private String id;
  18. // 微信id
  19. @ApiModelProperty(value = "微信id", name = "wcId")
  20. private String wcId;
  21. // 账号
  22. @ApiModelProperty(value = "账号", name = "account")
  23. private String account;
  24. // 消息类型
  25. @ApiModelProperty(value = "消息类型", name = "messageType")
  26. private String messageType;
  27. // 发送微信id
  28. @ApiModelProperty(value = "发送微信id", name = "fromUser")
  29. private String fromUser;
  30. // 发送群号
  31. @ApiModelProperty(value = "发送群号", name = "fromGroup")
  32. private String fromGroup;
  33. // 接收微信id
  34. @ApiModelProperty(value = "接收微信id", name = "toUser")
  35. private String toUser;
  36. // 消息msgId
  37. @ApiModelProperty(value = "消息msgId", name = "msgId")
  38. private Long msgId;
  39. // 消息newMsgId
  40. @ApiModelProperty(value = "消息newMsgId", name = "newMsgId")
  41. private Long newMsgId;
  42. // 时间
  43. @ApiModelProperty(value = "时间", name = "tm")
  44. private Date tm;
  45. // 消息体
  46. @ApiModelProperty(value = "消息体", name = "content")
  47. private String content;
  48. // 是否是自己发送的消息
  49. @ApiModelProperty(value = "是否是自己发送的消息", name = "self")
  50. private String self;
  51. // 是否处理
  52. @ApiModelProperty(value = "是否处理", name = "isDeal")
  53. private String isDeal;
  54. // 创建时间
  55. @ApiModelProperty(value = "创建时间", name = "intm")
  56. private Date intm;
  57. // 修改时间
  58. @ApiModelProperty(value = "修改时间", name = "uptm")
  59. private Date uptm;
  60. // 数据状态
  61. @ApiModelProperty(value = "数据状态", name = "dataStat")
  62. private String dataStat;
  63. public ExtWeiXinMessage() {
  64. }
  65. public String getId() {
  66. return id;
  67. }
  68. public void setId(String id) {
  69. this.id = id;
  70. }
  71. public String getWcId() {
  72. return wcId;
  73. }
  74. public void setWcId(String wcId) {
  75. this.wcId = wcId;
  76. }
  77. public String getAccount() {
  78. return account;
  79. }
  80. public void setAccount(String account) {
  81. this.account = account;
  82. }
  83. public String getMessageType() {
  84. return messageType;
  85. }
  86. public void setMessageType(String messageType) {
  87. this.messageType = messageType;
  88. }
  89. public String getFromUser() {
  90. return fromUser;
  91. }
  92. public void setFromUser(String fromUser) {
  93. this.fromUser = fromUser;
  94. }
  95. public String getFromGroup() {
  96. return fromGroup;
  97. }
  98. public void setFromGroup(String fromGroup) {
  99. this.fromGroup = fromGroup;
  100. }
  101. public String getToUser() {
  102. return toUser;
  103. }
  104. public void setToUser(String toUser) {
  105. this.toUser = toUser;
  106. }
  107. public Long getMsgId() {
  108. return msgId;
  109. }
  110. public void setMsgId(Long msgId) {
  111. this.msgId = msgId;
  112. }
  113. public Long getNewMsgId() {
  114. return newMsgId;
  115. }
  116. public void setNewMsgId(Long newMsgId) {
  117. this.newMsgId = newMsgId;
  118. }
  119. public Date getTm() {
  120. return tm;
  121. }
  122. public void setTm(Date tm) {
  123. this.tm = tm;
  124. }
  125. public String getContent() {
  126. return content;
  127. }
  128. public void setContent(String content) {
  129. this.content = content;
  130. }
  131. public String getSelf() {
  132. return self;
  133. }
  134. public void setSelf(String self) {
  135. this.self = self;
  136. }
  137. public String getIsDeal() {
  138. return isDeal;
  139. }
  140. public void setIsDeal(String isDeal) {
  141. this.isDeal = isDeal;
  142. }
  143. public Date getIntm() {
  144. return intm;
  145. }
  146. public void setIntm(Date intm) {
  147. this.intm = intm;
  148. }
  149. public Date getUptm() {
  150. return uptm;
  151. }
  152. public void setUptm(Date uptm) {
  153. this.uptm = uptm;
  154. }
  155. public String getDataStat() {
  156. return dataStat;
  157. }
  158. public void setDataStat(String dataStat) {
  159. this.dataStat = dataStat;
  160. }
  161. @Override
  162. public String toString() {
  163. return "ExtWeiXinMessage [" + "id=" + id + ", wcId=" + wcId + ", account=" + account + ", messageType=" + messageType + ", fromUser=" + fromUser + ", fromGroup=" + fromGroup + ", toUser=" + toUser + ", msgId=" + msgId + ", newMsgId=" + newMsgId + ", tm=" + tm + ", content=" + content + ", self=" + self + ", isDeal=" + isDeal + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  164. }
  165. }