dfebcf95fc416ae57eb3e4c59781b593fefd9696.svn-base 4.9 KB

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