forked from I3-YF/i3plus-mes-yfai
新增 主数据bean
parent
327e7f4f45
commit
c5505d85df
@ -0,0 +1,13 @@
|
|||||||
|
package cn.estsh.i3plus.ext.mes.api.base;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesPartShippingGroupDetail;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @CreateDate 2024/04/16
|
||||||
|
* @Author mingliang.li
|
||||||
|
*/
|
||||||
|
public interface IMesPartShippingGroupDetailService extends IBaseMesService<MesPartShippingGroupDetail> {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
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.MesPartShippingGroupDetail;
|
||||||
|
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 + "/mesPartShippingGroupDetail")
|
||||||
|
public class MesPartShippingGroupDetailController extends BaseMesController<MesPartShippingGroupDetail> {
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
package cn.estsh.i3plus.ext.mes.apiservice.serviceimpl.base;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.ext.mes.api.base.IMesPartShippingGroupDetailService;
|
||||||
|
import cn.estsh.i3plus.ext.mes.api.base.IMesPartShippingGroupService;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesPartShippingGroup;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesPartShippingGroupDetail;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
@Slf4j
|
||||||
|
public class MesPartShippingGroupDetailService extends BaseMesService<MesPartShippingGroupDetail> implements IMesPartShippingGroupDetailService {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue