lyh
2 天以前 9a9697c55fa66821cf74165ac2ae820182dae94d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.jeecg.modules.eam.service.impl;
 
import org.jeecg.modules.eam.entity.EamRepairPerson;
import org.jeecg.modules.eam.mapper.EamRepairPersonMapper;
import org.jeecg.modules.eam.service.IEamRepairPersonService;
import org.springframework.stereotype.Service;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 
/**
 * @Description: 故障维修人员
 * @Author: jeecg-boot
 * @Date:   2025-07-17
 * @Version: V1.0
 */
@Service
public class EamRepairPersonServiceImpl extends ServiceImpl<EamRepairPersonMapper, EamRepairPerson> implements IEamRepairPersonService {
 
}