forked from I3-YF/i3plus-mes-yfai
通用客户CBR
parent
d900d3e55f
commit
e1a6521c00
@ -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,14 @@
|
|||||||
|
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 org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 通过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