PayBatchAgentPayServiceImpl.java 584 B

1234567891011121314151617181920
  1. package com.sckw.freight.service.payment.impl;
  2. import com.sckw.freight.entity.payment.PayBatchAgentPay;
  3. import com.sckw.freight.mapper.payment.PayBatchAgentPayMapper;
  4. import com.sckw.freight.service.payment.IPayBatchAgentPayService;
  5. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  6. import org.springframework.stereotype.Service;
  7. /**
  8. * <p>
  9. * 服务实现类
  10. * </p>
  11. *
  12. * @author xj
  13. * @since 2025-02-11
  14. */
  15. @Service
  16. public class PayBatchAgentPayServiceImpl extends ServiceImpl<PayBatchAgentPayMapper, PayBatchAgentPay> implements IPayBatchAgentPayService {
  17. }