无关风月
2025-01-21 8f2abbbda6c87c59d0c2c5da9979e78ea38e74db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.dsh.guns.modular.system.service.impl;
 
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.dsh.course.mapper.TBackRecordMapper;
import com.dsh.guns.modular.system.model.TBackRecord;
import com.dsh.guns.modular.system.service.TBackRecordService;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 退费记录 服务实现类
 * </p>
 *
 * @author administrator
 * @since 2023-10-09
 */
@Service
public class TBackRecordServiceImpl extends ServiceImpl<TBackRecordMapper, TBackRecord> implements TBackRecordService {
 
}