liuwenwen 2 年 前
コミット
c5b65bb331

+ 1 - 0
server/src/main/java/edp/davinci/dao/QualityAuditorMapper.java

@@ -11,6 +11,7 @@ import java.util.List;
 
 @Component
 public interface QualityAuditorMapper {
+
     int insert(QualityAuditor qualityAuditor);
 
     @Delete({"delete from `quality_auditor` where id = #{id}"})

+ 8 - 8
server/src/main/resources/mybatis/mapper/QualityAuditorMapper.xml

@@ -70,28 +70,28 @@
                 #{taskId,jdbcType=BIGINT},
             </if>
             <if test="integrityCorrect != null">
-                #{integrityCorrect,jdbcType=INT},
+                #{integrityCorrect,jdbcType=INTEGER},
             </if>
             <if test="integrityError != null">
-                #{integrityError,jdbcType=INT},
+                #{integrityError,jdbcType=INTEGER},
             </if>
             <if test="uniformityCorrect != null">
-                #{uniformityCorrect,jdbcType=INT},
+                #{uniformityCorrect,jdbcType=INTEGER},
             </if>
             <if test="uniformityError != null">
-                #{uniformityError,jdbcType=INT},
+                #{uniformityError,jdbcType=INTEGER},
             </if>
             <if test="normativeCorrect != null">
-                #{normativeCorrect,jdbcType=INT},
+                #{normativeCorrect,jdbcType=INTEGER},
             </if>
             <if test="normativeError != null">
-                #{normativeError,jdbcType=INT},
+                #{normativeError,jdbcType=INTEGER},
             </if>
             <if test="accuracyCorrect != null">
-                #{accuracyCorrect,jdbcType=INT},
+                #{accuracyCorrect,jdbcType=INTEGER},
             </if>
             <if test="accuracyError != null">
-                #{accuracyError,jdbcType=INT},
+                #{accuracyError,jdbcType=INTEGER},
             </if>
             #{createBy,jdbcType=BIGINT},
             #{createTime,jdbcType=TIMESTAMP}