parent
6dccfc8fa8
commit
e58b28ecc4
@ -0,0 +1,22 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.engine.rule.EngineRulePersistence;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 规则引擎持久化类
|
||||||
|
* @Reference :
|
||||||
|
* @Author : Rock.Yu
|
||||||
|
* @CreateDate : 2019-04-16 09:53
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface IEngineRulePersistenceRepository extends BaseRepository<EngineRulePersistence, Long> {
|
||||||
|
/**
|
||||||
|
* 按照规则编号查询规则实体
|
||||||
|
* @param ruleNo 规则编号
|
||||||
|
* @return 规则实体
|
||||||
|
*/
|
||||||
|
EngineRulePersistence findByRuleNo(String ruleNo);
|
||||||
|
}
|
Loading…
Reference in New Issue