Commit 1bb75694 by 徐高华

朋友圈

parent dc485d4d
......@@ -28,11 +28,11 @@ public class QwMomentPlanAttendVO implements Serializable{
/**导购名称*/
private String clerkName;
/**评论数*/
private int commentCount;
private Integer commentCount;
/**点赞数*/
private int likeCount;
private Integer likeCount;
/**0已失效 1待执行 2已执行*/
private int taskStatus;
private Integer taskStatus;
/**任务执行时间*/
private Date sendTime;
/**企微朋友圈id*/
......@@ -55,14 +55,6 @@ public class QwMomentPlanAttendVO implements Serializable{
*/
private String reason ;
public String getReason() {
return reason;
}
public void setReason(String reason) {
this.reason = reason;
}
public String getStaffId() {
return staffId;
}
......@@ -103,27 +95,27 @@ public class QwMomentPlanAttendVO implements Serializable{
this.clerkName = clerkName;
}
public int getCommentCount() {
public Integer getCommentCount() {
return commentCount;
}
public void setCommentCount(int commentCount) {
public void setCommentCount(Integer commentCount) {
this.commentCount = commentCount;
}
public int getLikeCount() {
public Integer getLikeCount() {
return likeCount;
}
public void setLikeCount(int likeCount) {
public void setLikeCount(Integer likeCount) {
this.likeCount = likeCount;
}
public int getTaskStatus() {
public Integer getTaskStatus() {
return taskStatus;
}
public void setTaskStatus(int taskStatus) {
public void setTaskStatus(Integer taskStatus) {
this.taskStatus = taskStatus;
}
......@@ -174,4 +166,12 @@ public class QwMomentPlanAttendVO implements Serializable{
public void setStoreCode(String storeCode) {
this.storeCode = storeCode;
}
public String getReason() {
return reason;
}
public void setReason(String reason) {
this.reason = reason;
}
}
\ No newline at end of file
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