forked from I3-YF/i3plus-mes-yfai
物料信息主数据修改
parent
3efad1a43c
commit
73b97cc3b0
@ -0,0 +1,13 @@
|
||||
package cn.estsh.i3plus.ext.mes.api.base;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesPartProduceType;
|
||||
|
||||
/**
|
||||
* @Description : 产品生产类型
|
||||
* @Reference :
|
||||
* @Author : junsheng.li
|
||||
* @CreateDate 2024/6/3 14:38
|
||||
* @Modify:
|
||||
**/
|
||||
public interface IMesPartProduceTypeService extends IBaseMesService<MesPartProduceType> {
|
||||
}
|
@ -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.MesPartProduceType;
|
||||
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/6/3 14:42
|
||||
* @Modify:
|
||||
**/
|
||||
@Api("产品生产类型")
|
||||
@RestController
|
||||
@RequestMapping(MesCommonConstant.MES_YANFEN + "/mesPartProduceType")
|
||||
public class MesPartProduceTypeController extends BaseMesController<MesPartProduceType>{
|
||||
}
|
Loading…
Reference in New Issue