lisy
2023-07-10 1e4bc46e3f47c8332af0291ec71b86c8343b20d8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.dsh.guns.modular.system.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.dsh.course.mapper.TSystemPriceServiceMapper;
import com.dsh.guns.modular.system.model.TSystemPriceService;
import com.dsh.guns.modular.system.service.ITSystemPriceServiceService;
import org.springframework.stereotype.Service;
 
/**
 * @author zhibing.pu
 * @date 2023/3/25 18:11
 */
@Service
public class TSystemPriceServiceServiceImpl extends ServiceImpl<TSystemPriceServiceMapper, TSystemPriceService> implements ITSystemPriceServiceService {
}