ITXlhtConfService.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package com.xlht.xlhtproject.service;
  2. import com.xlht.xlhtproject.domain.TXlhtConf;
  3. import java.util.List;
  4. /**
  5. * 指标配置Service接口
  6. *
  7. * @author slibra
  8. * @date 2024-10-13
  9. */
  10. public interface ITXlhtConfService
  11. {
  12. /**
  13. * 查询指标配置
  14. *
  15. * @param id 指标配置主键
  16. * @return 指标配置
  17. */
  18. public TXlhtConf selectTXlhtConfById(Long id);
  19. /**
  20. * 查询指标配置列表
  21. *
  22. * @param tXlhtConf 指标配置
  23. * @return 指标配置集合
  24. */
  25. public List<TXlhtConf> selectTXlhtConfList(TXlhtConf tXlhtConf);
  26. /**
  27. * 新增指标配置
  28. *
  29. * @param tXlhtConf 指标配置
  30. * @return 结果
  31. */
  32. public int insertTXlhtConf(TXlhtConf tXlhtConf);
  33. /**
  34. * 修改指标配置
  35. *
  36. * @param tXlhtConf 指标配置
  37. * @return 结果
  38. */
  39. public int updateTXlhtConf(TXlhtConf tXlhtConf);
  40. /**
  41. * 批量删除指标配置
  42. *
  43. * @param ids 需要删除的指标配置主键集合
  44. * @return 结果
  45. */
  46. public int deleteTXlhtConfByIds(Long[] ids);
  47. /**
  48. * 删除指标配置信息
  49. *
  50. * @param id 指标配置主键
  51. * @return 结果
  52. */
  53. public int deleteTXlhtConfById(Long id);
  54. }