forked from I3-YF/i3plus-mes-yfai
Merge branch 'dev-temp-castle-2412191445-44381' into test
commit
4bd1ea7aac
@ -0,0 +1,6 @@
|
|||||||
|
package cn.estsh.i3plus.ext.mes.api.base;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesCimGmCbrRule;
|
||||||
|
|
||||||
|
public interface IMesCimGmCbrRuleService extends IBaseMesService<MesCimGmCbrRule>{
|
||||||
|
}
|
@ -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.MesCimGmCbrRule;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 通过CBR功能
|
||||||
|
*/
|
||||||
|
@Api(value ="通用CBR功能" )
|
||||||
|
@RestController
|
||||||
|
@RequestMapping(MesCommonConstant.MES_YANFEN + "/mes_cim_gm_cbr_rule")
|
||||||
|
public class MesCimGmCbrRuleController extends BaseMesController<MesCimGmCbrRule>{
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
package cn.estsh.i3plus.ext.mes.apiservice.serviceimpl.base;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.ext.mes.api.base.IMesCimGmCbrRuleService;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesCimGmCbrRule;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
public class MesCimGmCbrRuleServiceImpl extends BaseMesService<MesCimGmCbrRule> implements IMesCimGmCbrRuleService {
|
||||||
|
}
|
Loading…
Reference in New Issue