package com.ruoyi.bill.service; import java.util.List; import com.baomidou.mybatisplus.extension.service.IService; import com.ruoyi.bill.domain.Poundmst; /** * 主榜单信息Service接口 * * @author ruoyi * @date 2025-06-16 */ public interface IPoundmstService extends IService { /** * 查询主榜单信息 * * @param id 主榜单信息主键 * @return 主榜单信息 */ public Poundmst selectPoundmstById(String id); /** * 查询主榜单信息列表 * * @param poundmst 主榜单信息 * @return 主榜单信息集合 */ public List selectPoundmstList(Poundmst poundmst); /** * 新增主榜单信息 * * @param poundmst 主榜单信息 * @return 结果 */ public int insertPoundmst(Poundmst poundmst); /** * 新增主榜单信息(mybatis) * * @param poundmst 主榜单信息 * @return 结果 */ public int insertPoundmstDpi(Poundmst poundmst); /** * 修改主榜单信息 * * @param poundmst 主榜单信息 * @return 结果 */ public int updatePoundmst(Poundmst poundmst); /** * 批量删除主榜单信息 * * @param ids 需要删除的主榜单信息主键集合 * @return 结果 */ public int deletePoundmstByIds(String[] ids); /** * 根据id更新fid 字段 * * @param id 目标对象id *@param fid 对象fid字段值 * @return 结果 */ public int updateFidById(String id, String fid); /** * 删除主榜单信息信息 * * @param id 主榜单信息主键 * @return 结果 */ public int deletePoundmstById(String id); }