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 {
|
|
}
|