新增bean repository

tags/yfai-mes-ext-v1.0
LML丶 1 year ago
parent 00810b8eff
commit 1046242ed7

@ -0,0 +1,14 @@
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> {
}

@ -0,0 +1,13 @@
package cn.estsh.i3plus.ext.mes.api.base;
import cn.estsh.i3plus.pojo.mes.bean.MesWorkCellSubCell;
/**
* @Description:
* @CreateDate 2024/04/16
* @Author mingliang.li
*/
public interface IMesWorkCellSubCellService extends IBaseMesService<MesWorkCellSubCell> {
}

@ -0,0 +1,14 @@
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.MesWorkCellBin;
import io.swagger.annotations.Api;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@Api("工位与Bin位关系")
@RestController
@RequestMapping(MesCommonConstant.MES_YANFEN + "/mesWorkCellBin")
public class MesWorkCellBinController extends BaseMesController<MesWorkCellBin> {
}

@ -0,0 +1,15 @@
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.MesWorkCellBin;
import cn.estsh.i3plus.pojo.mes.bean.MesWorkCellSubCell;
import io.swagger.annotations.Api;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@Api("主工位与子工位关系维护")
@RestController
@RequestMapping(MesCommonConstant.MES_YANFEN + "/mesWorkCellSubCell")
public class MesWorkCellSubCellController extends BaseMesController<MesWorkCellSubCell> {
}

@ -0,0 +1,12 @@
package cn.estsh.i3plus.ext.mes.apiservice.serviceimpl.base;
import cn.estsh.i3plus.ext.mes.api.base.IMesWorkCellBinService;
import cn.estsh.i3plus.pojo.mes.bean.MesWorkCellBin;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
@Service
@Slf4j
public class MesWorkCellBinService extends BaseMesService<MesWorkCellBin> implements IMesWorkCellBinService {
}

@ -0,0 +1,12 @@
package cn.estsh.i3plus.ext.mes.apiservice.serviceimpl.base;
import cn.estsh.i3plus.ext.mes.api.base.IMesWorkCellSubCellService;
import cn.estsh.i3plus.pojo.mes.bean.MesWorkCellSubCell;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
@Service
@Slf4j
public class MesWorkCellSubCellService extends BaseMesService<MesWorkCellSubCell> implements IMesWorkCellSubCellService {
}
Loading…
Cancel
Save