|
|
@@ -22,7 +22,7 @@
|
|
|
<result property="examineContent" column="examine_content" jdbcType="VARCHAR"/>
|
|
|
<result property="initDuration" column="init_duration" jdbcType="DOUBLE"/>
|
|
|
<result property="checkDuration" column="check_duration" jdbcType="DOUBLE"/>
|
|
|
- <result property="checkStatus" column="check_status" jdbcType="DOUBLE"/>
|
|
|
+ <result property="checkStatus" column="check_status" jdbcType="INTEGER"/>
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="Base_Column_List">
|
|
|
@@ -59,7 +59,7 @@
|
|
|
,#{annexUrl,jdbcType=VARCHAR},#{createTime,jdbcType=TIMESTAMP},#{processStatus,jdbcType=INTEGER}
|
|
|
,#{duration,jdbcType=DOUBLE},#{examineId,jdbcType=BIGINT},#{examineTime,jdbcType=TIMESTAMP}
|
|
|
,#{examineName,jdbcType=VARCHAR},#{recordTime,jdbcType=TIMESTAMP},#{examineContent,jdbcType=VARCHAR}
|
|
|
- ,#{initDuration,jdbcType=DOUBLE},#{checkDuration,jdbcType=DOUBLE},#{checkStatus,jdbcType=DOUBLE}
|
|
|
+ ,#{initDuration,jdbcType=DOUBLE},#{checkDuration,jdbcType=DOUBLE},#{checkStatus,jdbcType=INTEGER}
|
|
|
)
|
|
|
</insert>
|
|
|
<insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.ruoyi.project.domain.ProjectStaffRecord" useGeneratedKeys="true">
|
|
|
@@ -102,7 +102,7 @@
|
|
|
<if test="examineContent != null">#{examineContent,jdbcType=VARCHAR},</if>
|
|
|
<if test="initDuration != null">#{initDuration,jdbcType=DOUBLE},</if>
|
|
|
<if test="checkDuration != null">#{checkDuration,jdbcType=DOUBLE},</if>
|
|
|
- <if test="checkStatus != null">#{checkStatus,jdbcType=DOUBLE},</if>
|
|
|
+ <if test="checkStatus != null">#{checkStatus,jdbcType=INTEGER},</if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.ruoyi.project.domain.ProjectStaffRecord">
|
|
|
@@ -157,7 +157,7 @@
|
|
|
check_duration = #{checkDuration,jdbcType=DOUBLE},
|
|
|
</if>
|
|
|
<if test="checkStatus != null">
|
|
|
- check_status = #{checkStatus,jdbcType=DOUBLE},
|
|
|
+ check_status = #{checkStatus,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
</set>
|
|
|
where id = #{id,jdbcType=BIGINT}
|
|
|
@@ -181,7 +181,7 @@
|
|
|
examine_content = #{examineContent,jdbcType=VARCHAR},
|
|
|
init_duration = #{initDuration,jdbcType=DOUBLE},
|
|
|
check_duration = #{checkDuration,jdbcType=DOUBLE},
|
|
|
- check_status = #{checkStatus,jdbcType=DOUBLE}
|
|
|
+ check_status = #{checkStatus,jdbcType=INTEGER}
|
|
|
where id = #{id,jdbcType=BIGINT}
|
|
|
</update>
|
|
|
<select id="selectList" resultType="com.ruoyi.project.bo.ProjectStaffRecordOut">
|