forked from I3-YF/i3plus-mes-yfai
排序推单
parent
0200f6a308
commit
1b1a559e4d
@ -1,7 +0,0 @@
|
||||
package cn.estsh.i3plus.ext.mes.api.base;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesQueueOrderCellPushCfg;
|
||||
|
||||
public interface IMesQueueOrderCellPushCfgService extends IBaseMesService<MesQueueOrderCellPushCfg> {
|
||||
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
package cn.estsh.i3plus.ext.mes.api.base;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesQueueOrderPushCellCfg;
|
||||
|
||||
public interface IMesQueueOrderPushCellCfgService extends IBaseMesService<MesQueueOrderPushCellCfg> {
|
||||
|
||||
}
|
@ -1,13 +1,13 @@
|
||||
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.MesQueueOrderCellPushCfg;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesQueueOrderPushCellCfg;
|
||||
import io.swagger.annotations.Api;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
@Api("生产队列工位推送配置信息")
|
||||
@Api("生产队列推送工位配置信息")
|
||||
@RestController
|
||||
@RequestMapping(MesCommonConstant.MES_YANFEN + "/mesQueueOrderCellPushCfg")
|
||||
public class MesQueueOrderCellPushCfgController extends BaseMesController<MesQueueOrderCellPushCfg>{
|
||||
@RequestMapping(MesCommonConstant.MES_YANFEN + "/mesQueueOrderPushCellCfg")
|
||||
public class MesQueueOrderPushCellCfgController extends BaseMesController<MesQueueOrderPushCellCfg>{
|
||||
}
|
Loading…
Reference in New Issue