forked from I3-YF/i3plus-mes-yfai
工位与Bin位关系维护
parent
f48ba3af54
commit
55b6217a9a
@ -1,14 +0,0 @@
|
||||
package cn.estsh.i3plus.ext.mes.api.base;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesCarSeries;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesCarSeriesDetail;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @CreateDate 2024/04/16
|
||||
* @Author mingliang.li
|
||||
*/
|
||||
public interface IMesCarSeriesDetailService extends IBaseMesService<MesCarSeriesDetail> {
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package cn.estsh.i3plus.ext.mes.api.base;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesCarSeriesModel;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @CreateDate 2024/04/16
|
||||
* @Author mingliang.li
|
||||
*/
|
||||
public interface IMesCarSeriesModelService extends IBaseMesService<MesCarSeriesModel> {
|
||||
|
||||
|
||||
}
|
@ -1,14 +1,13 @@
|
||||
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.MesCarSeries;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesCarSeriesDetail;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesCarSeriesModel;
|
||||
import io.swagger.annotations.Api;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
@Api(description = "车系明细")
|
||||
@Api(description = "车系车型维护")
|
||||
@RestController
|
||||
@RequestMapping(MesCommonConstant.MES_YANFEN + "/mesCarSeriesDetail")
|
||||
public class MesCarSeriesDetailController extends BaseMesController<MesCarSeriesDetail> {
|
||||
public class MesCarSeriesModelController extends BaseMesController<MesCarSeriesModel> {
|
||||
}
|
Loading…
Reference in New Issue