|
|
|
@ -22,10 +22,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<result property="preparationTools" column="preparation_tools" />
|
|
|
|
|
<result property="communicationContent" column="communication_content" />
|
|
|
|
|
<result property="status" column="status" />
|
|
|
|
|
<result property="experimentResult" column="experiment_result" />
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="selectExperimentRequestVo">
|
|
|
|
|
select objid, customer_name, project_name, creation_time, execution_time, device_name, experiment_desc, create_by, create_time, update_by, update_time, process_id, device2_name, experiment_content, preparation_tools, communication_content, status from experiment_request
|
|
|
|
|
select objid, customer_name, project_name, creation_time, execution_time, device_name, experiment_desc, create_by, create_time, update_by, update_time, process_id, device2_name, experiment_content, preparation_tools, communication_content,
|
|
|
|
|
status ,
|
|
|
|
|
experiment_result
|
|
|
|
|
from experiment_request
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
<select id="selectExperimentRequestList" parameterType="ExperimentRequest" resultMap="ExperimentRequestResult">
|
|
|
|
@ -37,6 +41,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="executionTime != null "> and execution_time = #{executionTime}</if>
|
|
|
|
|
<if test="deviceName != null and deviceName != ''"> and device_name like ('%' + #{deviceName} + '%')</if>
|
|
|
|
|
<if test="status != null "> and status = #{status}</if>
|
|
|
|
|
<if test="experimentResult != null"> and experiment_result = #{experimentResult} </if>
|
|
|
|
|
</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
@ -65,6 +70,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="preparationTools != null">preparation_tools,</if>
|
|
|
|
|
<if test="communicationContent != null">communication_content,</if>
|
|
|
|
|
<if test="status != null">status,</if>
|
|
|
|
|
<if test="experimentResult != null">experiment_result,</if>
|
|
|
|
|
</trim>
|
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
|
<if test="objid != null">#{objid},</if>
|
|
|
|
@ -84,6 +90,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="preparationTools != null">#{preparationTools},</if>
|
|
|
|
|
<if test="communicationContent != null">#{communicationContent},</if>
|
|
|
|
|
<if test="status != null">#{status},</if>
|
|
|
|
|
<if test="experimentResult != null">#{experimentResult},</if>
|
|
|
|
|
</trim>
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
@ -106,6 +113,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="preparationTools != null">preparation_tools = #{preparationTools},</if>
|
|
|
|
|
<if test="communicationContent != null">communication_content = #{communicationContent},</if>
|
|
|
|
|
<if test="status != null">status = #{status},</if>
|
|
|
|
|
<if test="experimentResult != null">experiment_result = #{experimentResult}</if>
|
|
|
|
|
</trim>
|
|
|
|
|
where objid = #{objid}
|
|
|
|
|
</update>
|
|
|
|
|