|  |  | 
 |  |  |         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.minutes == null){ | 
 |  |  |             throw new Exception("用水时长不能为空") ; | 
 |  |  |         if(cvo.minutes == null || cvo.minutes == 0.0){ | 
 |  |  |             throw new Exception("用水时长不能为空或为0") ; | 
 |  |  |         } | 
 |  |  |         if(cvo.minutes < 0 || cvo.minutes > 9999){ | 
 |  |  |             throw new Exception("用水时长取值范围是0~9999分钟") ; |