| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * ExtWeiXinMessageParam
- *
- * @author lhc
- * @date 2023-10-18
- */
- public class ExtWeiXinMessageParam extends PageParam implements Serializable {
- // ID
- @ApiParam(name = "ID")
- @ApiModelProperty(value = "ID", name = "id")
- private String id;
- // 微信id
- @ApiParam(name = "微信id")
- @ApiModelProperty(value = "微信id", name = "wcId")
- private String wcId;
- // 账号
- @ApiParam(name = "账号")
- @ApiModelProperty(value = "账号", name = "account")
- private String account;
- // 消息类型
- @ApiParam(name = "消息类型")
- @ApiModelProperty(value = "消息类型", name = "messageType")
- private String messageType;
- // 发送微信id
- @ApiParam(name = "发送微信id")
- @ApiModelProperty(value = "发送微信id", name = "fromUser")
- private String fromUser;
- // 发送群号
- @ApiParam(name = "发送群号")
- @ApiModelProperty(value = "发送群号", name = "fromGroup")
- private String fromGroup;
- // 接收微信id
- @ApiParam(name = "接收微信id")
- @ApiModelProperty(value = "接收微信id", name = "toUser")
- private String toUser;
- // 消息msgId
- @ApiParam(name = "消息msgId")
- @ApiModelProperty(value = "消息msgId", name = "msgId")
- private Long msgId;
- // 消息newMsgId
- @ApiParam(name = "消息newMsgId")
- @ApiModelProperty(value = "消息newMsgId", name = "newMsgId")
- private Long newMsgId;
- // 时间
- @ApiParam(name = "时间")
- @ApiModelProperty(value = "时间", name = "tm")
- private Date tm;
- // 消息体
- @ApiParam(name = "消息体")
- @ApiModelProperty(value = "消息体", name = "content")
- private String content;
- // 是否是自己发送的消息
- @ApiParam(name = "是否是自己发送的消息")
- @ApiModelProperty(value = "是否是自己发送的消息", name = "self")
- private String self;
- // 是否处理
- @ApiParam(name = "是否处理")
- @ApiModelProperty(value = "是否处理", name = "isDeal")
- private String isDeal;
- // 创建时间
- @ApiParam(name = "创建时间")
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 修改时间
- @ApiParam(name = "修改时间")
- @ApiModelProperty(value = "修改时间", name = "uptm")
- private Date uptm;
- // 数据状态
- @ApiParam(name = "数据状态")
- @ApiModelProperty(value = "数据状态", name = "dataStat")
- private String dataStat;
- public ExtWeiXinMessageParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getWcId() {
- return wcId;
- }
- public void setWcId(String wcId) {
- this.wcId = wcId;
- }
- public String getAccount() {
- return account;
- }
- public void setAccount(String account) {
- this.account = account;
- }
- public String getMessageType() {
- return messageType;
- }
- public void setMessageType(String messageType) {
- this.messageType = messageType;
- }
- public String getFromUser() {
- return fromUser;
- }
- public void setFromUser(String fromUser) {
- this.fromUser = fromUser;
- }
- public String getFromGroup() {
- return fromGroup;
- }
- public void setFromGroup(String fromGroup) {
- this.fromGroup = fromGroup;
- }
- public String getToUser() {
- return toUser;
- }
- public void setToUser(String toUser) {
- this.toUser = toUser;
- }
- public Long getMsgId() {
- return msgId;
- }
- public void setMsgId(Long msgId) {
- this.msgId = msgId;
- }
- public Long getNewMsgId() {
- return newMsgId;
- }
- public void setNewMsgId(Long newMsgId) {
- this.newMsgId = newMsgId;
- }
- public Date getTm() {
- return tm;
- }
- public void setTm(Date tm) {
- this.tm = tm;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public String getSelf() {
- return self;
- }
- public void setSelf(String self) {
- this.self = self;
- }
- public String getIsDeal() {
- return isDeal;
- }
- public void setIsDeal(String isDeal) {
- this.isDeal = isDeal;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- }
|