puzhibing
2023-06-13 11b4c2cf16ff93e4e4955f88db3ae9c28d6f7782
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.dsh.guns.modular.system.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.dsh.course.mapper.TEnsureIncomeRuleMapper;
import com.dsh.guns.modular.system.model.TEnsureIncomeRule;
import com.dsh.guns.modular.system.service.ITEnsureIncomeRuleService;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 保证收入 服务实现类
 * </p>
 *
 * @author stylefeng
 * @since 2023-04-20
 */
@Service
public class TEnsureIncomeRuleServiceImpl extends ServiceImpl<TEnsureIncomeRuleMapper, TEnsureIncomeRule> implements ITEnsureIncomeRuleService {
 
}