ICenterdataTHousingconstructionSteelcylinderLogService.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package com.sooka.sponest.data.housingconstruction.service;
  2. import com.sooka.sponest.data.housingconstruction.domain.CenterdataTHousingconstructionSteelcylinderLog;
  3. import java.util.List;
  4. /**
  5. * 钢瓶日志Service接口
  6. *
  7. * @author ruoyi
  8. * @date 2024-07-30
  9. */
  10. public interface ICenterdataTHousingconstructionSteelcylinderLogService {
  11. /**
  12. * 查询钢瓶日志
  13. *
  14. * @param id 钢瓶日志主键
  15. * @return 钢瓶日志
  16. */
  17. public CenterdataTHousingconstructionSteelcylinderLog selectCenterdataTHousingconstructionSteelcylinderLogById(String id);
  18. /**
  19. * 查询钢瓶日志列表
  20. *
  21. * @param centerdataTHousingconstructionSteelcylinderLog 钢瓶日志
  22. * @return 钢瓶日志集合
  23. */
  24. public List<CenterdataTHousingconstructionSteelcylinderLog> selectCenterdataTHousingconstructionSteelcylinderLogList(CenterdataTHousingconstructionSteelcylinderLog centerdataTHousingconstructionSteelcylinderLog);
  25. /**
  26. * 新增钢瓶日志
  27. *
  28. * @param centerdataTHousingconstructionSteelcylinderLog 钢瓶日志
  29. * @return 结果
  30. */
  31. public int insertCenterdataTHousingconstructionSteelcylinderLog(CenterdataTHousingconstructionSteelcylinderLog centerdataTHousingconstructionSteelcylinderLog);
  32. /**
  33. * 修改钢瓶日志
  34. *
  35. * @param centerdataTHousingconstructionSteelcylinderLog 钢瓶日志
  36. * @return 结果
  37. */
  38. public int updateCenterdataTHousingconstructionSteelcylinderLog(CenterdataTHousingconstructionSteelcylinderLog centerdataTHousingconstructionSteelcylinderLog);
  39. /*
  40. * 按钢瓶id查询最新一条日志
  41. *
  42. * @author 韩福成
  43. * @date 2024/8/1 上午9:51
  44. */
  45. public CenterdataTHousingconstructionSteelcylinderLog selectBySteelcylinderId(String steelcylinderId);
  46. }