| 123456789101112131415161718192021222324 |
- package com.goafanti.ambSystem.service.Impl;
- import com.goafanti.ambSystem.bo.InputAmbPayment;
- import com.goafanti.ambSystem.service.AmbPaymentService;
- import com.goafanti.common.dao.AmbPaymentApplicationMapper;
- import com.goafanti.common.dao.AmbSystemMapper;
- import com.goafanti.core.mybatis.BaseMybatisDao;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- @Service
- public class AmbPaymentServiceImpl extends BaseMybatisDao<AmbPaymentApplicationMapper> implements AmbPaymentService {
- @Autowired
- private AmbPaymentApplicationMapper ambPaymentApplicationMapper;
- @Autowired
- private AmbSystemMapper ambSystemMapper;
- @Override
- public int checkAmbPayment(InputAmbPayment in) {
- return 0;
- }
- }
|