forked from I3-YF/i3plus-mes-yfai
责任人区域关系
parent
f62c90d3ff
commit
544247bae8
@ -0,0 +1,15 @@
|
|||||||
|
package cn.estsh.i3plus.ext.mes.api.base;
|
||||||
|
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesOrg;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description: 责任人区域关系
|
||||||
|
* @Author: gsz
|
||||||
|
* @Date: 2024/5/25 18:16
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
public interface IMesOrgService extends IBaseMesService<MesOrg> {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -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.MesOrg;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description: 责任人区域关系
|
||||||
|
* @Author: gsz
|
||||||
|
* @Date: 2024/5/25 18:16
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
@RequestMapping(MesCommonConstant.MES_YANFEN + "/mesOrg")
|
||||||
|
public class MesOrgController extends BaseMesController<MesOrg>{
|
||||||
|
}
|
Loading…
Reference in New Issue