zhangherong
2025-05-14 9e5574ea490728906b88414e07a8067fb89653b6
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.EamEquipmentDispose;
import org.jeecg.modules.eam.mapper.EamEquipmentDisposeMapper;
import org.jeecg.modules.eam.service.IEamEquipmentDisposeService;
import org.springframework.stereotype.Service;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 
/**
 * @Description: 设备处置(转让报废)
 * @Author: jeecg-boot
 * @Date:   2025-05-13
 * @Version: V1.0
 */
@Service
public class EamEquipmentDisposeServiceImpl extends ServiceImpl<EamEquipmentDisposeMapper, EamEquipmentDispose> implements IEamEquipmentDisposeService {
 
}