Commit e001a565 by 徐高华

获取msgid的完成时间调整

parent 0a2b267f
......@@ -101,6 +101,10 @@ public class GroupChatPlanExcelVO extends Object implements Serializable{
}
public String getCompletionRate() {
if (null == this.staffCount || this.staffCount==0 || null == this.sendCount || 0==this.sendCount){
completionRate = "0%";
return completionRate;
}
Double i = 100.0 * this.sendCount / this.staffCount;
BigDecimal bd = new BigDecimal(i);
bd = bd.setScale(2, RoundingMode.HALF_UP);
......
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