| | |
| | | </insert> |
| | | |
| | | <insert id="saveAccount" parameterType="Map"> |
| | | insert into account(amount, acct_type, obj_id, acct_id, acct_name, b_id, obj_type, part_id, link) |
| | | values (#{amount}, #{acctType}, #{objId}, #{acctId}, #{acctName}, '-1', #{objType}, #{partId}, #{link}) |
| | | insert into account(amount, acct_type, obj_id, acct_id, acct_name, b_id, obj_type, part_id, link,room_id,room_name) |
| | | values (#{amount}, #{acctType}, #{objId}, #{acctId}, #{acctName}, '-1', #{objType}, #{partId}, #{link},#{roomId},#{roomName}) |
| | | </insert> |
| | | |
| | | <!-- 查询账户信息(Business) add by wuxw 2018-07-03 --> |