Lius
2025-05-29 1a22f9f330ef0a51cd2a838932c1499346365dae
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.RepairStandard;
import org.jeecg.modules.eam.mapper.RepairStandardMapper;
import org.jeecg.modules.eam.service.IRepairStandardService;
import org.springframework.stereotype.Service;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 
/**
 * @Description: mom_eam_repair_standard
 * @Author: jeecg-boot
 * @Date:   2024-07-08
 * @Version: V1.0
 */
@Service
public class RepairStandardServiceImpl extends ServiceImpl<RepairStandardMapper, RepairStandard> implements IRepairStandardService {
 
}