IBasePreventFloodService.java 648 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.railway.business.baseinfo.service;
  2. import com.railway.business.baseinfo.domain.BasePreventFlood;
  3. import java.util.List;
  4. /**
  5. * 九防台账-防洪
  6. * @author wuhonghao
  7. * @date 2021/11/12
  8. */
  9. public interface IBasePreventFloodService{
  10. /**
  11. * 新增
  12. */
  13. int create(BasePreventFlood basePreventFlood);
  14. /**
  15. * 删除
  16. */
  17. int delete(String[] ids);
  18. /**
  19. * 更新
  20. */
  21. int update(BasePreventFlood basePreventFlood);
  22. /**
  23. * 获取单个
  24. */
  25. BasePreventFlood getInfo(String id);
  26. /**
  27. * 查询列表
  28. */
  29. List<BasePreventFlood> getList(BasePreventFlood basePreventFlood);
  30. }