<!--新增账号和权限的关联关系-->
<insert id="save" useGeneratedKeys="true" keyProperty="id" keyColumn="id">>
INSERT INTO auth_account_priority_relationship(account_id,priority_id,gmt_create,gmt_modified) VALUES(
#{accountId},#{priorityId},#{gmtCreate},#{gmtModified})
</insert>
这个返回的方法虽然是返回的void 但是可以通过传入的对象中拿到id的值。
原文:https://www.cnblogs.com/q1359720840/p/14880955.html