tms3.10修改
This commit is contained in:
@@ -16,7 +16,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectReceivingAccountPo">
|
||||
select id, account_name, account_information, del_flag, create_time, update_time, top_organization_id, organization_id
|
||||
select id, account_name, account_information, del_flag, create_time, update_time, top_organization_id, organization_id,account_bank
|
||||
from receiving_account
|
||||
</sql>
|
||||
|
||||
@@ -70,7 +70,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
</insert>
|
||||
|
||||
<insert id="batchInsert" parameterType="java.util.List">
|
||||
insert into receiving_account (account_name, account_information, del_flag, create_time, update_time,top_organization_id, organization_id)
|
||||
insert into receiving_account (account_name, account_information, del_flag, create_time, update_time,top_organization_id, organization_id,account_bank)
|
||||
values
|
||||
<foreach collection="list" item="item" separator=",">
|
||||
(
|
||||
@@ -78,7 +78,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
#{item.accountInformation},
|
||||
#{item.delFlag},
|
||||
#{item.createTime},
|
||||
#{item.updateTime},#{item.topOrganizationId},#{item.organizationId}
|
||||
#{item.updateTime},#{item.topOrganizationId},#{item.organizationId},#{item.accountBank}
|
||||
)
|
||||
</foreach>
|
||||
</insert>
|
||||
|
||||
Reference in New Issue
Block a user