SpringBoot + Mybatis 的 insert 通过注解传入多个参数

字体大小: 中小 标准 ->行高大小: 标准
@Insert("insert into a_manu_model(manu_code,model_code) values(#{manuCode},#{modelCode})")
void addManuModel(@Param("manuCode")String manuCode, @Param("modelCode") String modelCode);

此文章由 http://www.ositren.com 收集整理 ,地址为: http://www.ositren.com/htmls/70814.html