TPredictConfMapper.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.slibra.business.mapper;
  2. import java.util.List;
  3. import com.slibra.business.domain.TPredictConf;
  4. /**
  5. * 机理模型预测配置Mapper接口
  6. *
  7. * @author slibra
  8. * @date 2025-02-11
  9. */
  10. public interface TPredictConfMapper
  11. {
  12. /**
  13. * 查询机理模型预测配置
  14. *
  15. * @param id 机理模型预测配置主键
  16. * @return 机理模型预测配置
  17. */
  18. public TPredictConf selectTPredictConfById(Long id);
  19. /**
  20. * 查询机理模型预测配置列表
  21. *
  22. * @param tPredictConf 机理模型预测配置
  23. * @return 机理模型预测配置集合
  24. */
  25. public List<TPredictConf> selectTPredictConfList(TPredictConf tPredictConf);
  26. /**
  27. * 新增机理模型预测配置
  28. *
  29. * @param tPredictConf 机理模型预测配置
  30. * @return 结果
  31. */
  32. public int insertTPredictConf(TPredictConf tPredictConf);
  33. /**
  34. * 修改机理模型预测配置
  35. *
  36. * @param tPredictConf 机理模型预测配置
  37. * @return 结果
  38. */
  39. public int updateTPredictConf(TPredictConf tPredictConf);
  40. /**
  41. * 删除机理模型预测配置
  42. *
  43. * @param id 机理模型预测配置主键
  44. * @return 结果
  45. */
  46. public int deleteTPredictConfById(Long id);
  47. /**
  48. * 批量删除机理模型预测配置
  49. *
  50. * @param ids 需要删除的数据主键集合
  51. * @return 结果
  52. */
  53. public int deleteTPredictConfByIds(Long[] ids);
  54. }