forked from I3-YF/i3plus-mes-yfai
Mes枚举主表&枚举明细配置
parent
e89d97f765
commit
27ce83c06c
@ -0,0 +1,13 @@
|
|||||||
|
package cn.estsh.i3plus.ext.mes.api.base;
|
||||||
|
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesEnumDetail;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description: 枚举明细配置
|
||||||
|
* @Author: gsz
|
||||||
|
* @Date: 2024/5/21 14:16
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
public interface IMesEnumDetailService extends IBaseMesService<MesEnumDetail> {
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
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.MesEnum;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description: 枚举主表
|
||||||
|
* @Author: gsz
|
||||||
|
* @Date: 2024/5/21 14:16
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
@RequestMapping(MesCommonConstant.MES_YANFEN + "/mesEnum")
|
||||||
|
public class MesEnumController extends BaseMesController<MesEnum>{
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
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.MesEnumDetail;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description: 枚举明细配置
|
||||||
|
* @Author: gsz
|
||||||
|
* @Date: 2024/5/21 14:16
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
@RequestMapping(MesCommonConstant.MES_YANFEN + "/mesEnumDetail")
|
||||||
|
public class MesEnumDetailController extends BaseMesController<MesEnumDetail>{
|
||||||
|
}
|
Loading…
Reference in New Issue