package com.ruoyi.tms.mapper; import java.util.List; import com.ruoyi.tms.domain.TmsQuotePlan; import com.baomidou.mybatisplus.core.mapper.BaseMapper; /** * 报价方案管理Mapper接口 * * @author ruoyi * @date 2025-11-11 */ public interface TmsQuotePlanMapper extends BaseMapper { /** * 查询报价方案管理 * * @param id 报价方案管理ID * @return 报价方案管理 */ public TmsQuotePlan selectTmsQuotePlanById(Integer id); /** * 查询报价方案管理 记录数 * * @param tmsQuotePlan 报价方案管理 * @return 报价方案管理集合 */ public int selectTmsQuotePlanCount(TmsQuotePlan tmsQuotePlan); /** * 查询报价方案管理列表 * * @param tmsQuotePlan 报价方案管理 * @return 报价方案管理集合 */ public List selectTmsQuotePlanList(TmsQuotePlan tmsQuotePlan); /** * 新增报价方案管理 * * @param tmsQuotePlan 报价方案管理 * @return 结果 */ public int insertTmsQuotePlan(TmsQuotePlan tmsQuotePlan); /** * 新增报价方案管理[批量] * * @param tmsQuotePlans 报价方案管理 * @return 结果 */ public int insertTmsQuotePlanBatch(List tmsQuotePlans); /** * 修改报价方案管理 * * @param tmsQuotePlan 报价方案管理 * @return 结果 */ public int updateTmsQuotePlan(TmsQuotePlan tmsQuotePlan); /** * 修改报价方案管理[批量] * * @param tmsQuotePlans 报价方案管理 * @return 结果 */ public int updateTmsQuotePlanBatch(List tmsQuotePlans); /** * 删除报价方案管理 * * @param id 报价方案管理ID * @return 结果 */ public int deleteTmsQuotePlanById(Integer id); /** * 批量删除报价方案管理 * * @param ids 需要删除的数据ID * @return 结果 */ public int deleteTmsQuotePlanByIds(Integer[] ids); }