jiaosong
2023-10-19 63b7c2cf029bf1c54194df85aea4816f7c76c939
server/services/src/main/java/com/doumee/service/business/impl/PricingDetailServiceImpl.java
@@ -93,7 +93,7 @@
    public static  String getRoleNameByParam(BigDecimal basePrice, Integer baseTime, BigDecimal unitPrice, Integer unitTime) {
        String title = "计费规则:";
        if(baseTime < 0){
            title = Constants.translateMoney(basePrice).doubleValue()+"元畅骑一整天";
            title = basePrice.doubleValue()+"元畅骑一整天";
        }else {
            title = "起步";
            int time = baseTime / 60;
@@ -105,7 +105,7 @@
                title += min+"分钟";
            }
            title += Constants.translateMoney(unitPrice).doubleValue()
                    +"元,超过后"+Constants.translateMoney(basePrice).doubleValue()+"元/"
                    +"元,超过后"+basePrice.doubleValue()+"元/"
                    +unitTime+"分钟";
        }
        return  title;