package com.sooka.sponest.data.housingconstruction.service; import com.sooka.sponest.data.housingconstruction.domain.CenterdataTHousingconstructionSteelcylinderLog; import java.util.List; /** * 钢瓶日志Service接口 * * @author ruoyi * @date 2024-07-30 */ public interface ICenterdataTHousingconstructionSteelcylinderLogService { /** * 查询钢瓶日志 * * @param id 钢瓶日志主键 * @return 钢瓶日志 */ public CenterdataTHousingconstructionSteelcylinderLog selectCenterdataTHousingconstructionSteelcylinderLogById(String id); /** * 查询钢瓶日志列表 * * @param centerdataTHousingconstructionSteelcylinderLog 钢瓶日志 * @return 钢瓶日志集合 */ public List selectCenterdataTHousingconstructionSteelcylinderLogList(CenterdataTHousingconstructionSteelcylinderLog centerdataTHousingconstructionSteelcylinderLog); /** * 新增钢瓶日志 * * @param centerdataTHousingconstructionSteelcylinderLog 钢瓶日志 * @return 结果 */ public int insertCenterdataTHousingconstructionSteelcylinderLog(CenterdataTHousingconstructionSteelcylinderLog centerdataTHousingconstructionSteelcylinderLog); /** * 修改钢瓶日志 * * @param centerdataTHousingconstructionSteelcylinderLog 钢瓶日志 * @return 结果 */ public int updateCenterdataTHousingconstructionSteelcylinderLog(CenterdataTHousingconstructionSteelcylinderLog centerdataTHousingconstructionSteelcylinderLog); /* * 按钢瓶id查询最新一条日志 * * @author 韩福成 * @date 2024/8/1 上午9:51 */ public CenterdataTHousingconstructionSteelcylinderLog selectBySteelcylinderId(String steelcylinderId); }