赞
踩
xml: <insert id="insertBatch" useGeneratedKeys="true" keyProperty="id" parameterType="com.hamspringboot.po.Customer"> insert into t_customer (cname,cphone) values (#{customer.name},#{customer.phone}) </insert> mapper接口: void insertBatch(@Param("customer") Customer customer); 使用: customerMapper.insertBatch(customer); cid=customer.getId();
注意:
1.keyProperty=“"id" 里的id与实体内属性对应
2.mapper里返回值是void,不是实体类,不然会爆具有不受支持的返回类型
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。