SbyjService.java 593 B

123456789101112131415161718192021222324252627
  1. package com.chinaitop.depot.yjbj.service;
  2. import java.util.List;
  3. import com.chinaitop.depot.yjbj.model.Sbyj;
  4. public interface SbyjService {
  5. /**
  6. * 按条件查询集合数据
  7. * @param cfbm 仓房国标编码
  8. * @param orgId 库ID
  9. * @param alarmType 预警类型 1-测温设备故障 2-测温数据上传故障
  10. * @return
  11. * @throws Exception
  12. */
  13. List<Sbyj> findByConditions(String cfbm, Integer orgId, Integer alarmType) throws Exception;
  14. /**
  15. * 按主键ID查询一条数据
  16. * @param id
  17. * @return
  18. * @throws Exception
  19. */
  20. Sbyj findById(String id) throws Exception;
  21. }