|
|
@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
package cn.estsh.i3plus.pojo.andon.repository;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.andon.bean.AndonAlarmResponseCfg;
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
|
|
|
|
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* @Description : 对象持久层仓用方法控制(ANDON_呼叫通知配置)
|
|
|
|
|
|
|
|
* @Reference :
|
|
|
|
|
|
|
|
* @Author : hansen.ke
|
|
|
|
|
|
|
|
* @CreateDate : 2019-05-13 11:09
|
|
|
|
|
|
|
|
* @Modify:
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
@Repository
|
|
|
|
|
|
|
|
public interface IAndonAlarmResponseCfgRepository extends BaseRepository<AndonAlarmResponseCfg, Long> {
|
|
|
|
|
|
|
|
}
|