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; } }