java110
2022-03-12 db689e5e2cb730b2cf08796fa224084f00758a71
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<?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="oaWorkflowDataServiceDaoImpl">
 
 
    <!-- 保存OA表单审批数据信息 add by wuxw 2018-07-03 -->
    <insert id="saveOaWorkflowDataInfo" parameterType="Map">
        insert into oa_workflow_data(
        data_id,business_key,context,staff_name,start_time,pre_data_id,end_time,store_id,event,staff_id,flow_id
        ) values (
        #{dataId},#{businessKey},#{context},#{staffName},#{startTime},#{preDataId},#{endTime},#{storeId},#{event},#{staffId},#{flowId}
        )
    </insert>
 
 
    <!-- 查询OA表单审批数据信息 add by wuxw 2018-07-03 -->
    <select id="getOaWorkflowDataInfo" parameterType="Map" resultType="Map">
        select t.data_id,t.data_id dataId,t.business_key,t.business_key businessKey,t.business_key id,t.context,t.staff_name,t.staff_name
        staffName,t.start_time,t.start_time startTime,t.pre_data_id,t.pre_data_id preDataId,t.status_cd,t.status_cd
        statusCd,t.end_time,t.end_time endTime,t.store_id,t.store_id storeId,t.event,t.staff_id,t.staff_id
        staffId,t.flow_id flowId
        from oa_workflow_data t
        where 1 =1
        <if test="dataId !=null and dataId != ''">
            and t.data_id= #{dataId}
        </if>
        <if test="businessKey !=null and businessKey != ''">
            and t.business_key= #{businessKey}
        </if>
        <if test="context !=null and context != ''">
            and t.context= #{context}
        </if>
        <if test="staffName !=null and staffName != ''">
            and t.staff_name= #{staffName}
        </if>
        <if test="startTime !=null and startTime != ''">
            and t.start_time= #{startTime}
        </if>
        <if test="preDataId !=null and preDataId != ''">
            and t.pre_data_id= #{preDataId}
        </if>
        <if test="statusCd !=null and statusCd != ''">
            and t.status_cd= #{statusCd}
        </if>
        <if test="endTime !=null and endTime != ''">
            and t.end_time= #{endTime}
        </if>
        <if test="storeId !=null and storeId != ''">
            and t.store_id= #{storeId}
        </if>
        <if test="event !=null and event != ''">
            and t.event= #{event}
        </if>
        <if test="staffId !=null and staffId != ''">
            and t.staff_id= #{staffId}
        </if>
        <if test="flowId !=null and flowId != ''">
            and t.flow_id= #{flowId}
        </if>
        <if test='his !=null and his == "Y"'>
            and t.end_time is not null
        </if>
        <if test='his !=null and his != "Y"'>
            and t.end_time is null
        </if>
        order by t.create_time desc
        <if test="page != -1 and page != null ">
            limit #{page}, #{row}
        </if>
 
    </select>
 
 
    <!-- 修改OA表单审批数据信息 add by wuxw 2018-07-03 -->
    <update id="updateOaWorkflowDataInfo" parameterType="Map">
        update oa_workflow_data t set t.status_cd = #{statusCd}
        <if test="businessKey !=null and businessKey != ''">
            , t.business_key= #{businessKey}
        </if>
        <if test="context !=null and context != ''">
            , t.context= #{context}
        </if>
        <if test="staffName !=null and staffName != ''">
            , t.staff_name= #{staffName}
        </if>
        <if test="startTime !=null and startTime != ''">
            , t.start_time= #{startTime}
        </if>
        <if test="preDataId !=null and preDataId != ''">
            , t.pre_data_id= #{preDataId}
        </if>
        <if test="endTime !=null and endTime != ''">
            , t.end_time= #{endTime}
        </if>
 
        <if test="event !=null and event != ''">
            , t.event= #{event}
        </if>
        <if test="staffId !=null and staffId != ''">
            , t.staff_id= #{staffId}
        </if>
        where 1=1
        <if test="dataId !=null and dataId != ''">
            and t.data_id= #{dataId}
        </if>
        <if test="storeId !=null and storeId != ''">
            and t.store_id= #{storeId}
        </if>
 
    </update>
 
    <!-- 查询OA表单审批数据数量 add by wuxw 2018-07-03 -->
    <select id="queryOaWorkflowDatasCount" parameterType="Map" resultType="Map">
        select count(1) count
        from oa_workflow_data t
        where 1 =1
        <if test="dataId !=null and dataId != ''">
            and t.data_id= #{dataId}
        </if>
        <if test="businessKey !=null and businessKey != ''">
            and t.business_key= #{businessKey}
        </if>
        <if test="context !=null and context != ''">
            and t.context= #{context}
        </if>
        <if test="staffName !=null and staffName != ''">
            and t.staff_name= #{staffName}
        </if>
        <if test="startTime !=null and startTime != ''">
            and t.start_time= #{startTime}
        </if>
        <if test="preDataId !=null and preDataId != ''">
            and t.pre_data_id= #{preDataId}
        </if>
        <if test="statusCd !=null and statusCd != ''">
            and t.status_cd= #{statusCd}
        </if>
        <if test="endTime !=null and endTime != ''">
            and t.end_time= #{endTime}
        </if>
        <if test="storeId !=null and storeId != ''">
            and t.store_id= #{storeId}
        </if>
        <if test="event !=null and event != ''">
            and t.event= #{event}
        </if>
        <if test="staffId !=null and staffId != ''">
            and t.staff_id= #{staffId}
        </if>
        <if test="flowId !=null and flowId != ''">
            and t.flow_id= #{flowId}
        </if>
        <if test='his !=null and his == "Y"'>
            and t.end_time is not null
        </if>
        <if test='his !=null and his != "Y"'>
            and t.end_time is null
        </if>
 
 
    </select>
 
</mapper>