标签:set round big cal property int new att 设置
(1)实体类的对应字段要设置成string类型,不能用int 或者其他数字类型
@ApiModelProperty(value = "出勤率") private String attendance;
(2)actualArrives是实到人数 arrives是应到人数
//出勤率 //设置百分数精确度2即保留两位小数 int v = (int) ((new BigDecimal((float) actualArrives / arrives).setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue()) * 100); String str = v + "%"; System.out.println(str);
标签:set round big cal property int new att 设置
原文地址:https://www.cnblogs.com/wuhuac/p/14906796.html