package com.odcc.cpzidc.bis.service; import java.util.List; import com.odcc.cpzidc.bis.domain.IdcUseGreen; /** * 绿色运行指标信息Service接口 * * @author ruoyi * @date 2024-10-10 */ public interface IIdcUseGreenService { /** * 查询绿色运行指标信息 * * @param id 绿色运行指标信息主键 * @return 绿色运行指标信息 */ public IdcUseGreen selectIdcUseGreenById(Long id); /** * 查询绿色运行指标信息列表 * * @param idcUseGreen 绿色运行指标信息 * @return 绿色运行指标信息集合 */ public List selectIdcUseGreenList(IdcUseGreen idcUseGreen); /** * 新增绿色运行指标信息 * * @param idcUseGreen 绿色运行指标信息 * @return 结果 */ public int insertIdcUseGreen(IdcUseGreen idcUseGreen); /** * 修改绿色运行指标信息 * * @param idcUseGreen 绿色运行指标信息 * @return 结果 */ public int updateIdcUseGreen(IdcUseGreen idcUseGreen); /** * 批量删除绿色运行指标信息 * * @param ids 需要删除的绿色运行指标信息主键集合 * @return 结果 */ public int deleteIdcUseGreenByIds(Long[] ids); /** * 删除绿色运行指标信息信息 * * @param id 绿色运行指标信息主键 * @return 结果 */ public int deleteIdcUseGreenById(Long id); }