Commit cb5303d4 by 徐高华

Merge branch 'feature/xgh/202504会员分组' into 'developer'

获取msgid的完成时间调整

See merge request !2900
parents dc62ff72 e001a565
......@@ -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