|
@@ -19,12 +19,13 @@
|
|
|
<result column="label_name" property="labelName" />
|
|
|
<result column="operation_type" property="operationType" />
|
|
|
<result column="operation_num" property="operationNum" />
|
|
|
+ <result column="status" property="status" />
|
|
|
</resultMap>
|
|
|
<insert id="insertCodeBatch" parameterType="java.util.List">
|
|
|
insert into icss_buried_some_statistical
|
|
|
(gmt_create , creator , hospital_id ,
|
|
|
hospital_dept_id , doctor_id , patient_id , inquiry_code ,
|
|
|
- label_id , label_name , operation_type , operation_num )
|
|
|
+ label_id , label_name , operation_type , operation_num,status )
|
|
|
values
|
|
|
<foreach collection="list" item="reddemCode" index="index"
|
|
|
separator=",">
|
|
@@ -38,7 +39,8 @@
|
|
|
#{reddemCode.labelId},
|
|
|
#{reddemCode.labelName},
|
|
|
#{reddemCode.operationType},
|
|
|
- #{reddemCode.operationNum}
|
|
|
+ #{reddemCode.operationNum},
|
|
|
+ #{reddemCode.status}
|
|
|
)
|
|
|
</foreach>
|
|
|
</insert>
|