|
|
|
@@ -51,7 +51,7 @@ public class WxMsg implements Serializable { |
|
|
|
private String msg; |
|
|
|
/*发送时间**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="发送时间",name="sendtime") |
|
|
|
private Date sendtime; |
|
|
|
private String sendtime; |
|
|
|
/*发送时间**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="发送时间",name="createtime") |
|
|
|
private Date createtime; |
|
|
|
@@ -110,10 +110,10 @@ public class WxMsg implements Serializable { |
|
|
|
public void setMsg(String _msg) { |
|
|
|
msg = _msg; |
|
|
|
} |
|
|
|
public Date getSendtime() { |
|
|
|
public String getSendtime() { |
|
|
|
return sendtime; |
|
|
|
} |
|
|
|
public void setSendtime(Date _sendtime) { |
|
|
|
public void setSendtime(String _sendtime) { |
|
|
|
sendtime = _sendtime; |
|
|
|
} |
|
|
|
public Date getCreatetime() { |
|
|
|
@@ -193,6 +193,14 @@ public class WxMsg implements Serializable { |
|
|
|
this.label = label; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getStatus() { |
|
|
|
return status; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStatus(Integer status) { |
|
|
|
this.status = status; |
|
|
|
} |
|
|
|
|
|
|
|
public static enum Field |
|
|
|
{ |
|
|
|
Id_ASC("`id` ASC"),Id_DESC("`id` DESC") |
|
|
|
|