package com.ips.system.service; import java.util.List; import com.ips.system.domain.Distillation; /** * 知识蒸馏Service接口 * * @author Allen * @date 2025-05-21 */ public interface IDistillationService { /** * 查询知识蒸馏 * * @param id 知识蒸馏主键 * @return 知识蒸馏 */ public Distillation selectDistillationById(Long id); /** * 查询知识蒸馏列表 * * @param distillation 知识蒸馏 * @return 知识蒸馏集合 */ public List selectDistillationList(Distillation distillation); /** * 新增知识蒸馏 * * @param distillation 知识蒸馏 * @return 结果 */ public int insertDistillation(Distillation distillation); /** * 修改知识蒸馏 * * @param distillation 知识蒸馏 * @return 结果 */ public int updateDistillation(Distillation distillation); /** * 批量删除知识蒸馏 * * @param ids 需要删除的知识蒸馏主键集合 * @return 结果 */ public int deleteDistillationByIds(Long[] ids); /** * 删除知识蒸馏信息 * * @param id 知识蒸馏主键 * @return 结果 */ public int deleteDistillationById(Long id); }