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 implements AmbPaymentService { @Autowired private AmbPaymentApplicationMapper ambPaymentApplicationMapper; @Autowired private AmbSystemMapper ambSystemMapper; @Override public int checkAmbPayment(InputAmbPayment in) { return 0; } }