123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- 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<CenterdataTHousingconstructionSteelcylinderLog> 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);
- }
|