| | |
| | | import com.java110.core.base.dao.BaseServiceDao; |
| | | import com.java110.common.dao.ICarInoutPaymentV1ServiceDao; |
| | | 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(businessCarInoutPaymentInfos.get(0).get("count").toString()); |
| | | } |
| | | |
| | | /** |
| | | * 查询车辆支付信息(instance) |
| | | * @param info bId 信息 |
| | | * @return List<Map> |
| | | * @throws DAOException DAO异常 |
| | | */ |
| | | @Override |
| | | public List<Map> queryCarInoutPaymentMarjor(Map info) throws DAOException { |
| | | logger.debug("查询 queryCarInoutPaymentMarjor 入参 info : {}",info); |
| | | |
| | | List<Map> businessCarInoutPaymentInfos = sqlSessionTemplate.selectList("carInoutPaymentV1ServiceDaoImpl.queryCarInoutPaymentMarjor",info); |
| | | |
| | | return businessCarInoutPaymentInfos; |
| | | } |
| | | |
| | | public List<Map> queryCarInoutPaymentSummary(Map info) throws DAOException{ |
| | | logger.debug("查询 queryCarInoutPaymentSummary 入参 info : {}",info); |
| | | List<Map> businessCarInoutPaymentInfos = sqlSessionTemplate.selectList("carInoutPaymentV1ServiceDaoImpl.queryCarInoutPaymentSummary",info); |
| | | return businessCarInoutPaymentInfos; |
| | | } |
| | | |
| | | |
| | | |
| | | } |