forked from I3-YF/i3plus-mes-yfai
点检功能点优化
parent
59502ee279
commit
d2c977b5de
@ -0,0 +1,13 @@
|
||||
package cn.estsh.i3plus.ext.mes.api.base;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesEquipmentSpotCheckTag;
|
||||
|
||||
/**
|
||||
* @Description : 设备点检地址
|
||||
* @Reference :
|
||||
* @Author : junsheng.li
|
||||
* @CreateDate 2024/11/22 19:08
|
||||
* @Modify:
|
||||
**/
|
||||
public interface IMesEquipmentSpotCheckTagService extends IBaseMesService<MesEquipmentSpotCheckTag> {
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package cn.estsh.i3plus.ext.mes.apiservice.controller.base;
|
||||
|
||||
import cn.estsh.i3plus.ext.mes.pojo.constant.MesCommonConstant;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesEquipmentSpotCheckTag;
|
||||
import io.swagger.annotations.Api;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
/**
|
||||
* @Description : 设备点检地址
|
||||
* @Reference :
|
||||
* @Author : junsheng.li
|
||||
* @CreateDate 2024/11/22 19:06
|
||||
* @Modify:
|
||||
**/
|
||||
@Api(description = "设备点检地址")
|
||||
@RestController
|
||||
@RequestMapping(MesCommonConstant.MES_YANFEN + "/mesEquipmentSpotCheckTag")
|
||||
public class MesEquipmentSpotCheckTagController extends BaseMesController<MesEquipmentSpotCheckTag> {
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
package cn.estsh.i3plus.ext.mes.apiservice.serviceimpl.base;
|
||||
|
||||
import cn.estsh.i3plus.ext.mes.api.base.IMesEquipmentSpotCheckTagService;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesEquipmentSpotCheckTag;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @Description : 设备点检地址
|
||||
* @Reference :
|
||||
* @Author : junsheng.li
|
||||
* @CreateDate 2024/11/22 19:09
|
||||
* @Modify:
|
||||
**/
|
||||
@Service
|
||||
@Slf4j
|
||||
public class MesEquipmentSpotCheckTagServiceImpl extends BaseMesService<MesEquipmentSpotCheckTag> implements IMesEquipmentSpotCheckTagService {
|
||||
}
|
Loading…
Reference in New Issue