码迷,mamicode.com
首页 > 其他好文 > 详细

返回百分比形式的数据

时间:2021-06-20 18:31:58      阅读:0      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!