AmbPaymentServiceImpl.java 787 B

123456789101112131415161718192021222324
  1. package com.goafanti.ambSystem.service.Impl;
  2. import com.goafanti.ambSystem.bo.InputAmbPayment;
  3. import com.goafanti.ambSystem.service.AmbPaymentService;
  4. import com.goafanti.common.dao.AmbPaymentApplicationMapper;
  5. import com.goafanti.common.dao.AmbSystemMapper;
  6. import com.goafanti.core.mybatis.BaseMybatisDao;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.stereotype.Service;
  9. @Service
  10. public class AmbPaymentServiceImpl extends BaseMybatisDao<AmbPaymentApplicationMapper> implements AmbPaymentService {
  11. @Autowired
  12. private AmbPaymentApplicationMapper ambPaymentApplicationMapper;
  13. @Autowired
  14. private AmbSystemMapper ambSystemMapper;
  15. @Override
  16. public int checkAmbPayment(InputAmbPayment in) {
  17. return 0;
  18. }
  19. }