forked from I3-YF/i3plus-mes-yfai
增加 班组信息 班组生产线对应关系维护
parent
b753707e29
commit
2cbac10698
@ -0,0 +1,13 @@
|
||||
package cn.estsh.i3plus.ext.mes.api.base;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesCenterShiftGroup;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @CreateDate 2024/04/16
|
||||
* @Author mingliang.li
|
||||
*/
|
||||
public interface IMesCenterShiftGroupService extends IBaseMesService<MesCenterShiftGroup> {
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package cn.estsh.i3plus.ext.mes.api.base;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesShiftGroup;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @CreateDate 2024/04/16
|
||||
* @Author mingliang.li
|
||||
*/
|
||||
public interface IMesShiftGroupService extends IBaseMesService<MesShiftGroup> {
|
||||
|
||||
|
||||
}
|
@ -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.MesCenterShiftGroup;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesShiftGroup;
|
||||
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 + "/mesCenterShiftGroup")
|
||||
public class MesCenterShiftGroupController extends BaseMesController<MesCenterShiftGroup>{
|
||||
}
|
@ -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.MesPart;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesShiftGroup;
|
||||
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 + "/mesShiftGroup")
|
||||
public class MesShiftGroupController extends BaseMesController<MesShiftGroup>{
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
package cn.estsh.i3plus.ext.mes.apiservice.serviceimpl.base;
|
||||
|
||||
import cn.estsh.i3plus.ext.mes.api.base.IMesCenterShiftGroupService;
|
||||
import cn.estsh.i3plus.ext.mes.api.base.IMesShiftGroupService;
|
||||
import cn.estsh.i3plus.pojo.base.bean.DdlPackBean;
|
||||
import cn.estsh.i3plus.pojo.base.tool.DdlPreparedPack;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesCenterShiftGroup;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesPart;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesShiftGroup;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
@Service
|
||||
@Slf4j
|
||||
public class MesCenterShiftGroupService extends BaseMesService<MesCenterShiftGroup> implements IMesCenterShiftGroupService {
|
||||
|
||||
protected void setPackQueryBean(MesPart bean, DdlPackBean packBean) {
|
||||
DdlPreparedPack.getStringEqualPack(bean.getPartNo(), "partNo", packBean);
|
||||
DdlPreparedPack.getStringLikerPack(bean.getPartName(), "partName", packBean);
|
||||
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
package cn.estsh.i3plus.ext.mes.apiservice.serviceimpl.base;
|
||||
|
||||
import cn.estsh.i3plus.ext.mes.api.base.IMesPartService;
|
||||
import cn.estsh.i3plus.ext.mes.api.base.IMesShiftGroupService;
|
||||
import cn.estsh.i3plus.ext.mes.apiservice.unit.exception.MesException;
|
||||
import cn.estsh.i3plus.pojo.base.bean.DdlPackBean;
|
||||
import cn.estsh.i3plus.pojo.base.tool.DdlPreparedPack;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesPart;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesShiftGroup;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
@Service
|
||||
@Slf4j
|
||||
public class MesShiftGroupService extends BaseMesService<MesShiftGroup> implements IMesShiftGroupService {
|
||||
|
||||
protected void setPackQueryBean(MesPart bean, DdlPackBean packBean) {
|
||||
DdlPreparedPack.getStringEqualPack(bean.getPartNo(), "partNo", packBean);
|
||||
DdlPreparedPack.getStringLikerPack(bean.getPartName(), "partName", packBean);
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue