yanghb
2023-04-21 34d21869cb87d4a83abe0e1cb26e67d30001a0ad
1
2
3
4
5
6
7
8
9
10
11
package com.stylefeng.guns.modular.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.stylefeng.guns.modular.system.dao.OfflineTravelPaymentMapper;
import com.stylefeng.guns.modular.system.model.OfflineTravelPayment;
import com.stylefeng.guns.modular.system.service.IOfflineTravelPaymentService;
import org.springframework.stereotype.Service;
 
@Service
public class OfflineTravelPaymentServiceImpl extends ServiceImpl<OfflineTravelPaymentMapper, OfflineTravelPayment> implements IOfflineTravelPaymentService {
}