forked from I3-YF/i3plus-mes-yfai
Merge remote-tracking branch 'origin/dev' into dev
commit
040e5f1b3a
@ -0,0 +1,13 @@
|
|||||||
|
package cn.estsh.i3plus.ext.mes.api.base;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.edi.base.MesPartGroupRelation;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :发运基础数据维护
|
||||||
|
* @Reference :
|
||||||
|
* @Author : Castle
|
||||||
|
* @CreateDate : 2024/7/1 13:46
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface IMesPartGroupRelationService extends IBaseMesService<MesPartGroupRelation>{
|
||||||
|
}
|
@ -0,0 +1,20 @@
|
|||||||
|
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.edi.base.MesPartGroupRelation;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : Castle
|
||||||
|
* @CreateDate : 2024/7/1 10:57
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Api("零件组关系")
|
||||||
|
@RestController
|
||||||
|
@RequestMapping(MesCommonConstant.MES_YANFEN + "/mesPartGroupRelation")
|
||||||
|
public class MesPartGroupRelationController extends BaseMesController<MesPartGroupRelation>{
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
package cn.estsh.i3plus.ext.mes.apiservice.serviceimpl.base;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.ext.mes.api.base.IMesPartGroupRelationService;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.edi.base.MesPartGroupRelation;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : Castle
|
||||||
|
* @CreateDate : 2024/7/1 13:47
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Slf4j
|
||||||
|
@Service
|
||||||
|
public class MesPartGroupRelationServiceImpl extends BaseMesService<MesPartGroupRelation> implements IMesPartGroupRelationService {
|
||||||
|
}
|
Loading…
Reference in New Issue