liusheng
2024-07-26 32d4054619138c34062fb6bdcfed27caf5d0f97f
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
<?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.project.mapper.VDonationworkflowMapper">
 
    <resultMap type="com.ruoyi.project.domain.VDonationworkflow" id="VDonationworkflowResult">
        <result property="id"    column="id"    />
        <result property="name"    column="name"    />
        <result property="idcardno"    column="IDCardNo"    />
        <result property="workflow"    column="workflow"    />
        <result property="terminationcase"    column="terminationCase"    />
        <result property="deptid"    column="deptid"    />
        <result property="deptname"    column="deptname"    />
        <result property="reporterno"    column="reporterNo"    />
        <result property="reportername"    column="reporterName"    />
        <result property="donatetime"    column="donatetime"    />
        <result property="reporttime"    column="ReportTime"    />
        <result property="coreteamassessconclusion"    column="CoreTeamAssessConclusion"    />
        <result property="coreteamassesstime"    column="coreTeamAssessTime"    />
        <result property="signdate"    column="signdate"    />
        <result property="expertconclusion"    column="ExpertConclusion"    />
        <result property="conclusiontime"    column="conclusionTime"    />
        <result property="organcount"    column="organcount"    />
        <result property="operationbegtime"    column="operationBegTime"    />
        <result property="completetime"    column="completeTime"    />
    </resultMap>
 
    <sql id="selectVDonationworkflowVo">
        select id, name, IDCardNo, workflow, terminationCase, deptid, deptname, reporterNo, reporterName, donatetime, ReportTime, CoreTeamAssessConclusion, coreTeamAssessTime, signdate, ExpertConclusion, conclusionTime, organcount, operationBegTime, completeTime from v_donationworkflow
    </sql>
 
    <select id="selectVDonationworkflowList" parameterType="com.ruoyi.project.domain.VDonationworkflow" resultMap="VDonationworkflowResult">
        <include refid="selectVDonationworkflowVo"/>
        <where>
            <if test="name != null  and name != ''"> and name like concat('%', #{name}, '%')</if>
            <if test="idcardno != null  and idcardno != ''"> and IDCardNo = #{idcardno}</if>
            <if test="workflow != null "> and workflow = #{workflow}</if>
            <if test="terminationcase != null "> and terminationCase = #{terminationcase}</if>
            <if test="deptid != null "> and deptid = #{deptid}</if>
            <if test="deptname != null  and deptname != ''"> and deptname like concat('%', #{deptname}, '%')</if>
            <if test="reporterno != null  and reporterno != ''"> and reporterNo = #{reporterno}</if>
            <if test="reportername != null  and reportername != ''"> and reporterName like concat('%', #{reportername}, '%')</if>
            <if test="donatetime != null "> and donatetime = #{donatetime}</if>
            <if test="reporttime != null "> and ReportTime = #{reporttime}</if>
            <if test="coreteamassessconclusion != null  and coreteamassessconclusion != ''"> and CoreTeamAssessConclusion = #{coreteamassessconclusion}</if>
            <if test="coreteamassesstime != null "> and coreTeamAssessTime = #{coreteamassesstime}</if>
            <if test="signdate != null "> and signdate = #{signdate}</if>
            <if test="expertconclusion != null "> and ExpertConclusion = #{expertconclusion}</if>
            <if test="conclusiontime != null "> and conclusionTime = #{conclusiontime}</if>
            <if test="organcount != null "> and organcount = #{organcount}</if>
            <if test="operationbegtime != null "> and operationBegTime = #{operationbegtime}</if>
            <if test="completetime != null "> and completeTime = #{completetime}</if>
        </where>
    </select>
 
</mapper>