zhangback
7 天以前 ca412ade3b178fbc8ba0a4b6215a040acdede954
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
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<TmsQuotePlan>
{
    /**
     * 查询报价方案管理
     * 
     * @param id 报价方案管理ID
     * @return 报价方案管理
     */
    public TmsQuotePlan selectTmsQuotePlanById(Integer id);
 
    /**
     * 查询报价方案管理 记录数
     *
     * @param tmsQuotePlan 报价方案管理
     * @return 报价方案管理集合
     */
    public int selectTmsQuotePlanCount(TmsQuotePlan tmsQuotePlan);
 
 
    /**
     * 查询报价方案管理列表
     * 
     * @param tmsQuotePlan 报价方案管理
     * @return 报价方案管理集合
     */
    public List<TmsQuotePlan> selectTmsQuotePlanList(TmsQuotePlan tmsQuotePlan);
 
    /**
     * 新增报价方案管理
     * 
     * @param tmsQuotePlan 报价方案管理
     * @return 结果
     */
    public int insertTmsQuotePlan(TmsQuotePlan tmsQuotePlan);
 
    /**
     * 新增报价方案管理[批量]
     *
     * @param tmsQuotePlans 报价方案管理
     * @return 结果
     */
    public int insertTmsQuotePlanBatch(List<TmsQuotePlan> tmsQuotePlans);
 
    /**
     * 修改报价方案管理
     * 
     * @param tmsQuotePlan 报价方案管理
     * @return 结果
     */
    public int updateTmsQuotePlan(TmsQuotePlan tmsQuotePlan);
 
    /**
     * 修改报价方案管理[批量]
     *
     * @param tmsQuotePlans 报价方案管理
     * @return 结果
     */
    public int updateTmsQuotePlanBatch(List<TmsQuotePlan> tmsQuotePlans);
 
    /**
     * 删除报价方案管理
     * 
     * @param id 报价方案管理ID
     * @return 结果
     */
    public int deleteTmsQuotePlanById(Integer id);
 
    /**
     * 批量删除报价方案管理
     * 
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteTmsQuotePlanByIds(Integer[] ids);
}