判断一个数值是否在区间范围内

使用场景

xx快递小哥未派件10票 应派总件100票 未派占比10%。
通过读取罚款配置表判断是按单票罚款还是按占比罚款,匹配区间及对应罚款金额,进行罚款。

罚款配置效果:

在这里插入图片描述

sql:

CREATE TABLE `nhm_site_fine_set` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `data_type` tinyint(3) DEFAULT '-1' COMMENT '数据类型:1无揽收;2无发件;',
  `rule_type` tinyint(1) DEFAULT '-1' COMMENT '罚款规则,0:按占比;1:按单票',
  `start_date` date NOT NULL DEFAULT '1970-01-01' COMMENT '起始时间',
  `section_money` text COMMENT '区间及对应金额',
  `update_time` datetime DEFAULT NULL COMMENT '最新修改时间',
  `operator` varchar(20) DEFAULT '' COMMENT '修改人',
  PRIMARY KEY (`id`),
  KEY `idx_data_type` (`data_type`),
  KEY `idx_start_date` (`start_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='xxx';

INSERT INTO `nhm_site_fine_set` VALUES (1, 1, 0, '2018-08-01', '[{\"section\":\"(0,100]\",\"money\":0}]', NULL, NULL);
INSERT INTO `nhm_site_fine_set` VALUES (2, 2, 0, '2018-08-01', '[{\"section\":\"(0,100]\",\"money\":0}]', NULL, NULL);
INSERT INTO `nhm_site_fine_set` VALUES (3, 3, 0, '2018-08-01', '[{\"section\":\"(0,100]\",\"money\":0}]', NULL, NULL);
INSERT INTO `nhm_site_fine_set` VALUES (4, 4, 0, '2018-08-01', '[{\"section\":\"(0,100]\",\"money\":0}]', NULL, NULL);
INSERT INTO `nhm_site_fine_set` VALUES (5, 5, 0, '2018-08-01', '[{\"section\":\"(0,100]\",\"money\":0}]', NULL, NULL);
INSERT INTO `nhm_site_fine_set` VALUES (6, 6, 0, '2018-08-01', '[{\"section\":\"(0,100]\",\"money\":0}]', NULL, NULL);
INSERT INTO `nhm_site_fine_set` VALUES (7, 7, 0, '2018-08-01', '[{\"section\":\"(0,100]\",\"money\":0}]', NULL, NULL);
INSERT INTO `nhm_site_fine_set` VALUES (8, 8, 0, '2018-08-01', '[{\"section\":\"(0,100]\",\"money\":0}]', NULL, NULL);
INSERT INTO `nhm_site_fine_set` VALUES (9, 9, 0, '2018-08-01', '[{\"section\":\"(0,100]\",\"money\":0}]', NULL, NULL);

IntervalUtil.java

package com.xx.xx.xx.utils;
import org.apache.ibatis.ognl.Ognl;
/**
 * 
 * @ClassName: IntervalUtil
 * @author: billy
 * @date: 
 */
public class IntervalUtil {

    /**
     * 判断data_value是否在interval区间范围内
     * @author: 
     * @date: 
     * @param data_value 数值类型的
     * @param interval 正常的数学区间,包括无穷大等,如:(1,3)、>5%、(-∞,6]、(125%,135%)U(70%,80%)
     * @return true:表示data_value在区间interval范围内,false:表示data_value不在区间interval范围内
     */
   

public static boolean isInTheInterval(String data_value,String interval) {

        //将区间和data_value转化为可计算的表达式
        String formula = getFormulaByAllInterval(data_value,interval,"||");
//        ScriptEngine jse = new ScriptEngineManager().getEngineByName("JavaScript"); 效率较低
        try {
            return (Boolean)Ognl.getValue(formula, (Object) null,Boolean.class);
            //计算表达式
//            return (Boolean) jse.eval(formula);
        } catch (Exception t) {
            return false;
        }
    }
   

/**
     * 将所有阀值区间转化为公式:如
     * [75,80)   =》        date_value < 80 && date_value >= 75
     * (125%,135%)U(70%,80%)   =》        (date_value < 1.35 && date_value > 1.25) || (date_value < 0.8 && date_value > 0.7)
     * @param date_value
     * @param interval  形式如:(125%,135%)U(70%,80%)
     * @param connector 连接符 如:") || ("
     */
    public static String getFormulaByAllInterval(String date_value, String interval, String connector) {
        StringBuffer buff = new StringBuffer();
        for(String limit:interval.split("U")){//如:(125%,135%)U (70%,80%)
            buff.append("(").append(getFormulaByInterval(date_value, limit," && ")).append(")").append(connector);
        }
        String allLimitInvel = buff.toString();
        int index = allLimitInvel.lastIndexOf(connector);
        allLimitInvel = allLimitInvel.substring(0,index);
        return allLimitInvel;
    }

    /**
     * 将整个阀值区间转化为公式:如
     * 145)      =》         date_value < 145
     * [75,80)   =》        date_value < 80 && date_value >= 75
     * @param date_value
     * @param interval  形式如:145)、[75,80)
     * @param connector 连接符 如:&&
     */
    private static String getFormulaByInterval(String date_value, String interval, String connector) {
        StringBuffer buff = new StringBuffer();
        for(String halfInterval:interval.split(",")){//如:[75,80)、≥80
            buff.append(getFormulaByHalfInterval(halfInterval, date_value)).append(connector);
        }
        String limitInvel = buff.toString();
        int index = limitInvel.lastIndexOf(connector);
        limitInvel = limitInvel.substring(0,index);
        return limitInvel;
    }

    /**
     * 将半个阀值区间转化为公式:如
     * 145)      =》         date_value < 145
     * ≥80%      =》         date_value >= 0.8
     * [130      =》         date_value >= 130
     * <80%     =》         date_value < 0.8
     * @param halfInterval  形式如:145)、≥80%、[130、<80%
     * @param date_value
     * @return date_value < 145
     */
    private static String getFormulaByHalfInterval(String halfInterval, String date_value) {
        halfInterval = halfInterval.trim();
        if(halfInterval.contains("∞")){//包含无穷大则不需要公式
            return "1 == 1";
        }
        StringBuffer formula = new StringBuffer();
        String data = "";
        String opera = "";
        if(halfInterval.matches("^([<>≤≥\\[\\(]{1}(-?\\d+.?\\d*\\%?))$")){//表示判断方向(如>)在前面 如:≥80%
            opera = halfInterval.substring(0,1);
            data = halfInterval.substring(1);
        }else{//[130、145)
            opera = halfInterval.substring(halfInterval.length()-1);
            data = halfInterval.substring(0,halfInterval.length()-1);
        }
        double value = dealPercent(data);
        formula.append(date_value).append(" ").append(opera).append(" ").append(value);
        String a = formula.toString();
        //转化特定字符
        return a.replace("[", ">=").replace("(", ">").replace("]", "<=").replace(")", "<").replace("≤", "<=").replace("≥", ">=");
    }

    /**
     * 去除百分号,转为小数
     * @param str 可能含百分号的数字
     * @return
     */
    private static double dealPercent(String str){
        double d = 0.0;
        if(str.contains("%")){
            str = str.substring(0,str.length()-1);
            d = Double.parseDouble(str)/100;
        }else{
            d = Double.parseDouble(str);
        }
        return d;
    }

//    public static void main(String[] args) {
//        IntervalUtil a = new IntervalUtil();
//        System.out.println(a.isInTheInterval("100", "[0,100)"));
//    }
}

工具类调用:

 /**
     * 根据业务类型和监控日期 获取对应的罚款金额配置
     * @param set 数据库查出的罚款数据
     * @param billNum违规票数
     * @param percent 违规占比
     * @return 获取对应区间罚款金额
     */
    private BigDecimal getSet(FineSetResult set, Long billNum, BigDecimal percent) {
        BigDecimal fine = BigDecimal.ZERO;

        List<xx> sectionMoneys = JSONObject.parseArray(set.getSectionMoney(),xx.class);

        for (xx sectionMoney:sectionMoneys){
            String dataValue = null;

            //按占比罚款
            if (set.getRuleType().equals(0)){
                if(percent.compareTo(BigDecimal.ZERO)==0){
                    return fine;
                }
                dataValue = percent.toString();
            }

            //按单票罚款
            if (set.getRuleType().equals(1)){
                if(billNum==0l){
                    return fine;
                }
                dataValue = billNum.toString();
            }
            boolean isInTheInterval = IntervalUtil.isInTheInterval(dataValue,sectionMoney.getSection());

            if (isInTheInterval){
                fine = sectionMoney.getMoney();
                break;
            }

        }
        return fine;
    }
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章