yanghb
2023-03-29 89417630d74fb84866f838aa7e068af7e6f5a1ce
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.SysWithdrawalPoundageMapper;
import com.stylefeng.guns.modular.system.model.SysWithdrawalPoundage;
import com.stylefeng.guns.modular.system.service.ISysWithdrawalPoundageService;
import org.springframework.stereotype.Service;
 
@Service
public class SysWithdrawalPoundageServiceImpl extends ServiceImpl<SysWithdrawalPoundageMapper, SysWithdrawalPoundage> implements ISysWithdrawalPoundageService {
}