forked from I3-YF/i3plus-mes-yfai
Mes-Maximo仪表主数据&模具映射关系维护
parent
09e1914ead
commit
f7bcdab3d7
@ -0,0 +1,13 @@
|
||||
package cn.estsh.i3plus.ext.mes.api.base;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesMouldMappingCfg;
|
||||
|
||||
/**
|
||||
* @Description :模具映射关系维护
|
||||
* @Reference :
|
||||
* @Author : gsz
|
||||
* @CreateDate 2024/5/20 10:06
|
||||
* @Modify:
|
||||
**/
|
||||
public interface IMesMouldMappingCfgService extends IBaseMesService<MesMouldMappingCfg> {
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
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.MesMouldMappingCfg;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* @Description :模具映射关系维护
|
||||
* @Reference :
|
||||
* @Author : gsz
|
||||
* @CreateDate : 2024-05-20 10:16
|
||||
* @Modify:
|
||||
**/
|
||||
@RestController
|
||||
@RequestMapping(MesCommonConstant.MES_YANFEN + "/mesMouldMappingCfg")
|
||||
public class MesMouldMappingCfgController extends BaseMesController<MesMouldMappingCfg>{
|
||||
}
|
Loading…
Reference in New Issue