| | |
| | | import com.java110.core.base.dao.BaseServiceDao; |
| | | import com.java110.fee.dao.IPayFeeConfigV1ServiceDao; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import com.java110.core.log.LoggerFactory; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | |
| | | return Integer.parseInt(businessPayFeeConfigInfos.get(0).get("count").toString()); |
| | | } |
| | | |
| | | @Override |
| | | public int queryFeeObjsCount(Map info) { |
| | | logger.debug("查询 queryFeeObjsCount 入参 info : {}",info); |
| | | |
| | | List<Map> datas = sqlSessionTemplate.selectList("payFeeConfigV1ServiceDaoImpl.queryFeeObjsCount", info); |
| | | if (datas.size() < 1) { |
| | | return 0; |
| | | } |
| | | |
| | | return Integer.parseInt(datas.get(0).get("count").toString()); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> queryFeeObjs(Map info) { |
| | | logger.debug("查询 queryFeeObjs 入参 info : {}",info); |
| | | |
| | | List<Map> datas = sqlSessionTemplate.selectList("payFeeConfigV1ServiceDaoImpl.queryFeeObjs",info); |
| | | |
| | | return datas; |
| | | } |
| | | |
| | | |
| | | } |