|
@@ -167,7 +167,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
|
<!--新增申请明细-->
|
|
|
<insert id="insertIntDetailed" parameterType="IntDetailed" useGeneratedKeys="true" keyProperty="id">
|
|
|
- insert into int_detailed(int_id, secret_key, purpose) values (#{intId} ,#{secretKey}, #{purpose})
|
|
|
+ insert into int_detailed(int_id, secret_key, purpose, int_code) values (#{intId} ,#{secretKey}, #{purpose}, #{code})
|
|
|
</insert>
|
|
|
|
|
|
<select id="selectIntRecordDetailedBySubId" parameterType="String" resultMap="IntDetailedResult">
|
|
@@ -195,7 +195,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
FROM
|
|
|
int_detailed
|
|
|
WHERE
|
|
|
- id = #{intId}
|
|
|
+ int_id = #{intId}
|
|
|
</select>
|
|
|
|
|
|
<!--批量新增子表-->
|