| | |
| | | } |
| | | |
| | | @Override |
| | | public int queryFeeDetailsCountByVo(Map info) { |
| | | logger.debug("查询费用明细数据 入参 info : {}",info); |
| | | |
| | | List<Map> infos = sqlSessionTemplate.selectList("feeDetailServiceDaoImpl.queryFeeDetailsCountByVo", info); |
| | | if (infos.size() < 1) { |
| | | return 0; |
| | | } |
| | | |
| | | return Integer.parseInt(infos.get(0).get("count").toString()); |
| | | } |
| | | |
| | | @Override |
| | | public void saveFeeDetail(Map feeDetail) throws DAOException { |
| | | logger.debug("保存明细 入参 info : {}",feeDetail); |
| | | |
| | |
| | | throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR,"保存明细 数据失败:"+ JSONObject.toJSONString(feeDetail)); |
| | | } |
| | | } |
| | | |
| | | |
| | | } |