hsy
2026-08-28 cd2ed591a01abcaef8dac4cc5ad3b398abacbaef
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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.sales.mapper.BiddingManagementMapper">
 
    <resultMap type="BiddingManagement" id="BiddingManagementResult">
        <result property="id"    column="id"    />
        <result property="projectId"    column="project_id"    />
        <result property="projectName"    column="project_name"    />
        <result property="bidDocName"    column="bid_doc_name"    />
        <result property="tenderUnit"    column="tender_unit"    />
        <result property="bidUnit"    column="bid_unit"    />
        <result property="tenderDate"    column="tender_date"    />
        <result property="bidDate"    column="bid_date"    />
        <result property="bidDocFee"    column="bid_doc_fee"    />
        <result property="bidDocFeeStatus"    column="bid_doc_fee_status"    />
        <result property="bidDocFeeStatusChangeDate"    column="bid_doc_fee_status_change_date"    />
        <result property="bidDeposit"    column="bid_deposit"    />
        <result property="bidResult"    column="bid_result"    />
        <result property="tenantId"    column="tenant_id"    />
        <result property="deptId"    column="dept_id"    />
        <result property="delFlag"    column="del_flag"    />
        <result property="createBy"    column="create_by"    />
        <result property="createTime"    column="create_time"    />
        <result property="updateBy"    column="update_by"    />
        <result property="updateTime"    column="update_time"    />
        <result property="remark"    column="remark"    />
    </resultMap>
 
    <sql id="selectBiddingManagementVo">
        select id, project_id, project_name, bid_doc_name, tender_unit, bid_unit, tender_date, bid_date, bid_doc_fee, bid_doc_fee_status, bid_doc_fee_status_change_date, bid_deposit, bid_result, tenant_id, dept_id, del_flag, create_by, create_time, update_by, update_time, remark from bidding_management
    </sql>
 
</mapper>