forked from I3-YF/i3plus-mes-yfai
开关班管理开发
parent
a1a59e6c7e
commit
a38dcfbcb5
@ -0,0 +1,13 @@
|
|||||||
|
package cn.estsh.i3plus.ext.mes.api.base;
|
||||||
|
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesProdShiftRecord;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description: 开关班记录表
|
||||||
|
* @Author: gsz
|
||||||
|
* @Date: 2024/5/25 18:16
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
public interface IMesProdShiftRecordService extends IBaseMesService<MesProdShiftRecord> {
|
||||||
|
}
|
@ -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.MesProdShiftRecord;
|
||||||
|
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 + "/mesProdShiftRecord")
|
||||||
|
public class MesProdShiftRecordController extends BaseMesController<MesProdShiftRecord>{
|
||||||
|
}
|
Loading…
Reference in New Issue