Commit 47844916 by qwmqiuwenmin

fix

parent 7a6353d4
......@@ -14,7 +14,7 @@ public class TabHaobanMaterial implements Serializable {
private String materialContent;
private String wxLastUploadTime;
private Date wxLastUploadTime;
private String mediaId;
......@@ -78,15 +78,16 @@ public class TabHaobanMaterial implements Serializable {
this.materialContent = materialContent == null ? null : materialContent.trim();
}
public String getWxLastUploadTime() {
return wxLastUploadTime;
}
public void setWxLastUploadTime(String wxLastUploadTime) {
this.wxLastUploadTime = wxLastUploadTime == null ? null : wxLastUploadTime.trim();
}
public Date getWxLastUploadTime() {
return wxLastUploadTime;
}
public void setWxLastUploadTime(Date wxLastUploadTime) {
this.wxLastUploadTime = wxLastUploadTime;
}
public String getMediaId() {
public String getMediaId() {
return mediaId;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment