package com.ruoyi.tms.service; import java.util.List; import com.ruoyi.tms.domain.TmsQuotePlan; import com.baomidou.mybatisplus.extension.service.IService; /** * 报价方案管理Service接口 * * @author ruoyi * @date 2025-11-11 */ public interface ITmsQuotePlanService extends IService { /** * 查询报价方案管理 * * @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 报价方案管理 * @param exportKey 导出功能的唯一标识 * @return 报价方案管理集合 */ public void export(TmsQuotePlan tmsQuotePlan, String exportKey) ; /** * 新增报价方案管理 * * @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 ids 需要删除的数据ID * @return 结果 */ public int deleteTmsQuotePlanByIds(String ids); /** * 批量删除报价方案管理 * * @param ids 需要删除的数据ID * @return 结果 */ public int deleteTmsQuotePlanByIds(Integer[] ids); /** * 删除报价方案管理信息 * * @param id 报价方案管理ID * @return 结果 */ public int deleteTmsQuotePlanById(Integer id); }