package com.odcc.cpzidc.bis.service; import java.util.List; import com.odcc.cpzidc.bis.domain.IdcUseBase; /** * 在用数据中心Service接口 * * @author ruoyi * @date 2024-10-10 */ public interface IIdcUseBaseService { /** * 查询在用数据中心 * * @param id 在用数据中心主键 * @return 在用数据中心 */ public IdcUseBase selectIdcUseBaseById(Long id); /** * 查询在用数据中心列表 * * @param idcUseBase 在用数据中心 * @return 在用数据中心集合 */ public List selectIdcUseBaseList(IdcUseBase idcUseBase); /** * 新增在用数据中心 * * @param idcUseBase 在用数据中心 * @return 结果 */ public int insertIdcUseBase(IdcUseBase idcUseBase); /** * 修改在用数据中心 * * @param idcUseBase 在用数据中心 * @return 结果 */ public int updateIdcUseBase(IdcUseBase idcUseBase); /** * 批量删除在用数据中心 * * @param ids 需要删除的在用数据中心主键集合 * @return 结果 */ public int deleteIdcUseBaseByIds(Long[] ids); /** * 删除在用数据中心信息 * * @param id 在用数据中心主键 * @return 结果 */ public int deleteIdcUseBaseById(Long id); }