|
|
@@ -38,6 +38,7 @@
|
|
|
<result property="joinCabinet" column="join_cabinet"/>
|
|
|
<result property="deviceStatus" column="device_status"/>
|
|
|
<result property="manufacturerType" column="manufacturer_type"/>
|
|
|
+ <result property="isPcfire" column="is_pcfire"/>
|
|
|
</resultMap>
|
|
|
|
|
|
<resultMap type="com.zd.laboratory.domain.vo.LabHardwareVO" id="LabHardwareVOResult">
|
|
|
@@ -55,6 +56,7 @@
|
|
|
he.name,
|
|
|
he.factory,
|
|
|
he.type,
|
|
|
+ he.is_pcfire,
|
|
|
he.pc_type,
|
|
|
he.mac_add,
|
|
|
he.subject_id,
|
|
|
@@ -373,6 +375,7 @@
|
|
|
<if test="channels != null">channels,</if>
|
|
|
|
|
|
<if test="lockId != null">lock_id,</if>
|
|
|
+ <if test="isPcfire != null">is_pcfire,</if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="id != null">#{id},</if>
|
|
|
@@ -405,6 +408,7 @@
|
|
|
<if test="sessionIndex != null">#{sessionIndex},</if>
|
|
|
<if test="channels != null">#{channels},</if>
|
|
|
<if test="lockId != null">#{lockId},</if>
|
|
|
+ <if test="isPcfire != null">#{isPcfire},</if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
|
|
|
@@ -442,6 +446,7 @@
|
|
|
<if test="operateTime != null">operate_time=#{operateTime},</if>
|
|
|
<if test="deviceStatus != null">device_status=#{deviceStatus},</if>
|
|
|
<if test="manufacturerType != null">manufacturer_type=#{manufacturerType},</if>
|
|
|
+ <if test="isPcfire != null">is_pcfire=#{isPcfire},</if>
|
|
|
</trim>
|
|
|
where id = #{id}
|
|
|
</update>
|