mybatis插入返回主键
Posted 倚天剑雨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis插入返回主键相关的知识,希望对你有一定的参考价值。
useGeneratedKeys="true" keyProperty="id"
<insert id="insertReturnPrimaryKey" parameterType="com.haitao55.spider.order.robot.platform.dos.TaskHistoryDO" useGeneratedKeys="true" keyProperty="id">
insert into task_history(
task_id,
agent_id,
assign_time,
start_time,
end_time,
status,
ctime,
utime,
account_id,
address_id,
coupon_id
) values(
#{taskId},
#{agentId},
#{assignTime},
#{startTime},
#{endTime},
#{status},
#{createTime},
#{updateTime},
#{accountId},
#{addressId},
#{couponId}
)
</insert>
以上是关于mybatis插入返回主键的主要内容,如果未能解决你的问题,请参考以下文章