puzhibing
2025-06-14 722224153cf3214909bbc6ec627db0357f1f6ae2
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 {
}