Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
<?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="HistoryTask">
<insert id="SAVE" parameterType="historytask">
insert into wf_hist_task (id,order_Id,task_Name,display_Name,task_Type,perform_Type,task_State,operator,create_Time,finish_Time,expire_Time,action_Url,parent_Task_Id,variable)
values (#{id, jdbcType=VARCHAR},#{orderId, jdbcType=VARCHAR},#{taskName, jdbcType=VARCHAR},
#{displayName, jdbcType=VARCHAR},#{taskType, jdbcType=NUMERIC},
#{performType, jdbcType=NUMERIC},#{taskState, jdbcType=NUMERIC},
#{operator, jdbcType=VARCHAR},#{createTime, jdbcType=VARCHAR},
#{finishTime, jdbcType=VARCHAR},#{expireTime, jdbcType=VARCHAR},
#{actionUrl, jdbcType=VARCHAR},#{parentTaskId, jdbcType=VARCHAR},#{variable, jdbcType=VARCHAR})
</insert>
<select id="SELECTONE" parameterType="string" resultType="historytask">
select
id,
order_Id as orderId,
task_Name as taskName,
display_Name as displayName,
task_Type as taskType,
perform_Type as performType,
task_State as taskState,
operator,
create_Time as createTime,
finish_Time as finishTime,
expire_Time as expireTime,
action_Url as actionUrl,
parent_Task_Id as parentTaskId,
variable
from wf_hist_task
where id = #{id, jdbcType=VARCHAR}
</select>
<select id="SELECTLIST" resultType="historytask">
select
id,
order_Id as orderId,
task_Name as taskName,
display_Name as displayName,
task_Type as taskType,
perform_Type as performType,
task_State as taskState,
operator,
create_Time as createTime,
finish_Time as finishTime,
expire_Time as expireTime,
action_Url as actionUrl,
parent_Task_Id as parentTaskId,
variable
from wf_hist_task
</select>
</mapper>