forked from I3-YF/i3plus-mes-yfai
工位与Bin位关系维护
parent
e06f85e3c0
commit
2b01910d78
@ -0,0 +1,13 @@
|
|||||||
|
package cn.estsh.i3plus.ext.mes.api.base;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesWorkCellBinCfg;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @CreateDate 2024/04/16
|
||||||
|
* @Author mingliang.li
|
||||||
|
*/
|
||||||
|
public interface IMesWorkCellBinCfgService extends IBaseMesService<MesWorkCellBinCfg> {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -1,14 +0,0 @@
|
|||||||
package cn.estsh.i3plus.ext.mes.api.base;
|
|
||||||
|
|
||||||
import cn.estsh.i3plus.pojo.mes.bean.MesPartPull;
|
|
||||||
import cn.estsh.i3plus.pojo.mes.bean.MesWorkCellBin;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description:
|
|
||||||
* @CreateDate 2024/04/16
|
|
||||||
* @Author mingliang.li
|
|
||||||
*/
|
|
||||||
public interface IMesWorkCellBinService extends IBaseMesService<MesWorkCellBin> {
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
@ -1,14 +1,14 @@
|
|||||||
package cn.estsh.i3plus.ext.mes.apiservice.controller.base;
|
package cn.estsh.i3plus.ext.mes.apiservice.controller.base;
|
||||||
|
|
||||||
import cn.estsh.i3plus.ext.mes.pojo.constant.MesCommonConstant;
|
import cn.estsh.i3plus.ext.mes.pojo.constant.MesCommonConstant;
|
||||||
import cn.estsh.i3plus.pojo.mes.bean.MesWorkCellBin;
|
import cn.estsh.i3plus.pojo.mes.bean.MesWorkCellBinCfg;
|
||||||
import io.swagger.annotations.Api;
|
import io.swagger.annotations.Api;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
@Api("工位与Bin位关系")
|
@Api("工位与Bin位关系维护")
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping(MesCommonConstant.MES_YANFEN + "/mesWorkCellBin")
|
@RequestMapping(MesCommonConstant.MES_YANFEN + "/mesWorkCellBin")
|
||||||
|
|
||||||
public class MesWorkCellBinController extends BaseMesController<MesWorkCellBin> {
|
public class MesWorkCellBinCfgController extends BaseMesController<MesWorkCellBinCfg> {
|
||||||
}
|
}
|
Loading…
Reference in New Issue