| 1234567891011121314151617181920 |
- package com.sckw.freight.service.payment.impl;
- import com.sckw.freight.entity.payment.PayBatchAgentPay;
- import com.sckw.freight.mapper.payment.PayBatchAgentPayMapper;
- import com.sckw.freight.service.payment.IPayBatchAgentPayService;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import org.springframework.stereotype.Service;
- /**
- * <p>
- * 服务实现类
- * </p>
- *
- * @author xj
- * @since 2025-02-11
- */
- @Service
- public class PayBatchAgentPayServiceImpl extends ServiceImpl<PayBatchAgentPayMapper, PayBatchAgentPay> implements IPayBatchAgentPayService {
- }
|