zjh
4 天以前 cc25bc0eec2d50da39d62f9896ed4d5e66805366
ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/TjCompPayServiceImpl.java
@@ -5,7 +5,12 @@
import com.ltkj.hosp.domain.TjCompPay;
import com.ltkj.hosp.mapper.TjCompPayMapper;
import com.ltkj.hosp.service.ITjCompPayService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.math.BigDecimal;
import java.util.Collections;
import java.util.List;
/**
 * 体检单位缴费主Service业务层处理
@@ -15,4 +20,17 @@
 */
@Service
public class TjCompPayServiceImpl extends ServiceImpl<TjCompPayMapper, TjCompPay> implements ITjCompPayService {
    @Autowired
    private TjCompPayMapper mapper;
    @Override
    public BigDecimal sumZje(String compId, String teamNo, String pacId) {
        return mapper.sumZje(compId, teamNo, pacId);
    }
    @Override
    public List<String> serialNumbers(String compId, String teamNo, String pacId) {
        return mapper.serialNumbers(compId, teamNo, pacId);
    }
}