mapper操作数据的同时返回操作后的值
<insert id="insertSelective" parameterType="com.test.entity.business" keyProperty="id" useGeneratedKeys="true">
例如,我们现在一条数据还想获取该数据插入数据库生成的id等字段。最后在实现层调用,(传入的参数对象.属性名)
<insert id="insertSelective" parameterType="com.test.entity.business" keyProperty="id" useGeneratedKeys="true">
例如,我们现在一条数据还想获取该数据插入数据库生成的id等字段。最后在实现层调用,(传入的参数对象.属性名)