forked from I3-YF/i3plus-mes-yfai
工艺,工艺工序关系基础信息维护
parent
4d12985007
commit
c714570d0d
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.ext.mes.api.base;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesCraft;
|
||||
|
||||
/**
|
||||
* @Description : 工艺信息
|
||||
* @Reference :
|
||||
* @Author : junsheng.li
|
||||
* @CreateDate 2024/5/11 13:54
|
||||
* @Modify:
|
||||
**/
|
||||
public interface IMesCraftService extends IBaseMesService<MesCraft> {
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.ext.mes.api.base;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesProcessCraftCfg;
|
||||
|
||||
/**
|
||||
* @Description : 工序工艺关系
|
||||
* @Reference :
|
||||
* @Author : junsheng.li
|
||||
* @CreateDate 2024/5/11 13:54
|
||||
* @Modify:
|
||||
**/
|
||||
public interface IMesProcessCraftCfgService extends IBaseMesService<MesProcessCraftCfg> {
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
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.MesCraft;
|
||||
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/5/11 13:52
|
||||
* @Modify:
|
||||
**/
|
||||
@Api("工艺信息")
|
||||
@RestController
|
||||
@RequestMapping(MesCommonConstant.MES_YANFEN + "/mesCraft")
|
||||
public class MesCraftController extends BaseMesController<MesCraft> {
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
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.MesProcessCraftCfg;
|
||||
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/5/11 13:52
|
||||
* @Modify:
|
||||
**/
|
||||
@Api("工序工艺关系")
|
||||
@RestController
|
||||
@RequestMapping(MesCommonConstant.MES_YANFEN + "/mesProcessCraftCfg")
|
||||
public class MesProcessCraftCfgController extends BaseMesController<MesProcessCraftCfg> {
|
||||
}
|
Loading…
Reference in New Issue