1
0

ITYztZymlService.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package com.siwei.system.service;
  2. //import com.onemap.system.api.domain.SysDictData;
  3. //import com.onemap.system.domain.TYztZyml;
  4. import com.siwei.system.api.domain.SysDictData;
  5. import com.siwei.system.domain.TYztZyml;
  6. import java.util.List;
  7. /**
  8. * 数据资源目录Service接口
  9. *
  10. * @author onemap
  11. * @date 2022-12-01
  12. */
  13. public interface ITYztZymlService
  14. {
  15. /**
  16. * 查询数据资源目录
  17. *
  18. * @param bsm 数据资源目录主键
  19. * @return 数据资源目录
  20. */
  21. public TYztZyml selectTYztZymlByBsm(String bsm);
  22. /**
  23. * 查询数据资源目录列表
  24. *
  25. * @param tYztZyml 数据资源目录
  26. * @return 数据资源目录集合
  27. */
  28. public List<TYztZyml> selectTYztZymlList(TYztZyml tYztZyml);
  29. /**
  30. * 新增数据资源目录
  31. *
  32. * @param tYztZyml 数据资源目录
  33. * @return 结果
  34. */
  35. public int insertTYztZyml(TYztZyml tYztZyml);
  36. /**
  37. * 修改数据资源目录
  38. *
  39. * @param tYztZyml 数据资源目录
  40. * @return 结果
  41. */
  42. public int updateTYztZyml(TYztZyml tYztZyml);
  43. /**
  44. * 批量删除数据资源目录
  45. *
  46. * @param bsms 需要删除的数据资源目录主键集合
  47. * @return 结果
  48. */
  49. public int deleteTYztZymlByBsms(String[] bsms);
  50. /**
  51. * 删除数据资源目录信息
  52. *
  53. * @param bsm 数据资源目录主键
  54. * @return 结果
  55. */
  56. public int deleteTYztZymlByBsm(String bsm);
  57. List<SysDictData> getDbLayers();
  58. }