| 123456789101112131415161718192021222324252627 |
- package com.chinaitop.depot.yjbj.service;
- import java.util.List;
- import com.chinaitop.depot.yjbj.model.Sbyj;
- public interface SbyjService {
- /**
- * 按条件查询集合数据
- * @param cfbm 仓房国标编码
- * @param orgId 库ID
- * @param alarmType 预警类型 1-测温设备故障 2-测温数据上传故障
- * @return
- * @throws Exception
- */
- List<Sbyj> findByConditions(String cfbm, Integer orgId, Integer alarmType) throws Exception;
- /**
- * 按主键ID查询一条数据
- * @param id
- * @return
- * @throws Exception
- */
- Sbyj findById(String id) throws Exception;
- }
|