package com.ruoyi.system.service.impl; import java.util.List; import com.ruoyi.system.domain.UpdateFileName; /** * 【请填写功能名称】Mapper接口 * * @author ruoyi * @date 2023-03-23 */ public interface UpdateFileNameMapper { /** * 查询【请填写功能名称】 * * @param id 【请填写功能名称】主键 * @return 【请填写功能名称】 */ public UpdateFileName selectUpdateFileNameById(Long id); /** * 查询【请填写功能名称】列表 * * @param updateFileName 【请填写功能名称】 * @return 【请填写功能名称】集合 */ public List selectUpdateFileNameList(UpdateFileName updateFileName); /** * 新增【请填写功能名称】 * * @param updateFileName 【请填写功能名称】 * @return 结果 */ public int insertUpdateFileName(UpdateFileName updateFileName); /** * 修改【请填写功能名称】 * * @param updateFileName 【请填写功能名称】 * @return 结果 */ public int updateUpdateFileName(UpdateFileName updateFileName); /** * 删除【请填写功能名称】 * * @param id 【请填写功能名称】主键 * @return 结果 */ public int deleteUpdateFileNameById(Long id); /** * 批量删除【请填写功能名称】 * * @param ids 需要删除的数据主键集合 * @return 结果 */ public int deleteUpdateFileNameByIds(Long[] ids); }