puzhibing
2023-07-27 614b0106f079e67bb674a37ede2bd0fe3df2a430
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.dsh.account.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.dsh.account.entity.CoachType;
import com.dsh.account.mapper.CoachTypeMapper;
import com.dsh.account.service.CoachTypeService;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 教练类型 服务实现类
 * </p>
 *
 * @author jqs
 * @since 2023-07-05
 */
@Service
public class CoachTypeServiceImpl extends ServiceImpl<CoachTypeMapper, CoachType> implements CoachTypeService {
 
}