Browse Source

订单流转BUG修复

anderx 7 years ago
parent
commit
990d8f8493
1 changed files with 4 additions and 2 deletions
  1. 4 2
      src/main/java/com/goafanti/common/mapper/ContractMapper.xml

+ 4 - 2
src/main/java/com/goafanti/common/mapper/ContractMapper.xml

@@ -746,7 +746,8 @@
 			commodity_quantity,
 			task_status,
 			task_comment,
-			create_time
+			create_time,
+			public_status
 		)
 	values
     <foreach collection="list" index="index" item="item" separator=",">
@@ -760,7 +761,8 @@
 		#{item.commodityQuantity,jdbcType=INTEGER},
 		#{item.taskStatus,jdbcType=INTEGER},
 		#{item.taskComment,jdbcType=VARCHAR},
-		#{item.createTime,jdbcType=TIMESTAMP}
+		#{item.createTime,jdbcType=TIMESTAMP},
+		#{item.publicStatus,jdbcType=INTEGER}
 	  )
     </foreach>
    </insert>