liurunyu
2024-09-07 9ad6b0179be4d351105f1507779d4f41a3a41953
pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V1_0_0/parse/Cd_A2_Down.java
@@ -85,14 +85,14 @@
        if(cvo.icCardNo == null){
            throw new Exception("虚拟IC卡编号不能为空") ;
        }
        if(cvo.moneyRemain == null){
            throw new Exception("剩余金额不能为空") ;
        if(cvo.moneyRemain == null || cvo.moneyRemain == 0.0){
            throw new Exception("剩余金额不能为空或为0") ;
        }
        if(cvo.waterPrice == null){
            throw new Exception("水价不能为空") ;
        if(cvo.waterPrice == null || cvo.waterPrice == 0.0){
            throw new Exception("水价不能为空或为0") ;
        }
        if(cvo.waterAmount == null){
            throw new Exception("预用水量不能为空") ;
        if(cvo.waterAmount == null || cvo.waterAmount == 0.0){
            throw new Exception("预用水量不能为空或为0") ;
        }
       if(cvo.waterAmount < 0 || cvo.waterAmount > 9999){
            throw new Exception("预用水量取值范围是0~9999m3") ;
@@ -103,7 +103,7 @@
        if(cvo.year < 24 || cvo.year > 9999){
            throw new Exception("计划开阀时间---年不正确") ;
        }
        if(cvo.year > 24 && cvo.year < 2024){
        if(cvo.year > 99 && cvo.year < 2024){
            throw new Exception("计划开阀时间---年不正确") ;
        }
        if(cvo.month == null){
@@ -136,7 +136,7 @@
        //    midRs.param = icCardNoGrp[0] ;
        //}
        //ByteUtil.string2BCD_LE(bs, icCardNoGrp[1], index) ;
        byte[] bs = new byte[16] ;
        byte[] bs = new byte[8] ;
        index = 0 ;
        GlCreate.createIcCardNo(cvo.icCardNo, bs, 0);
        bytes = ByteUtil.bytesMerge(bsHead, bs) ;