yeshijie %!s(int64=8) %!d(string=hai) anos
pai
achega
6f330bf8b3

+ 12 - 0
patient-co/patient-co-wlyy/src/main/java/com/yihu/wlyy/util/CommonUtil.java

@ -118,6 +118,18 @@ public class CommonUtil {
        return fileUrls;
    }
    /**
     * double*100转int
     * @param d
     * @return
     */
    public static Integer doubleToInt(Double d){
        if(d==null){
            return 0;
        }
        return new Double(d*100).intValue();
    }
    /**
     * 校验健康指标是否正常
     *