Commit f1eb80e4 by 徐高华

test

parent fadef90b
package com.gic.haoban.manage.api.dto.chat;
import java.io.Serializable;
import java.util.Date;
/**
*
......@@ -21,13 +22,15 @@ public class ChatOwnerTotalDTO implements Serializable {
private java.util.Date endTime;
private int sendCount;
private int notSendCount;
// 计划状态 1进行中 2已结束
private int planStatus;
public int getPlanStatus() {
if (this.getEndTime().before(endTime)) {
return 1;
}
return 2;
return planStatus;
}
public void setPlanStatus(int planStatus) {
this.planStatus = planStatus;
}
public Long getPlanId() {
......
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