主键不自增:返回值是插入的条数
<insert id="add" parameterType="EStudent"> insert into TStudent(name, age) values(#{name}, #{age}) </insert
主键自增:
<insert id="add" parameterType="EStudent" useGeneratedKeys="true" keyProperty="id"> insert into TStudent(name, age) values(#{name}, #{age}) </insert>
原文地址:https://www.cnblogs.com/sxdcgaq8080/p/9153805.html
时间: 2024-10-13 04:37:55