@Insert("INSERT INTO 商城后台管理.商品信息(name, author, money, date, store)VALUES(#{name}, #{author}, #{money}, #{data}, #{store})")
int addGoods(GoodsInformation goods);
@Insert("INSERT INTO 商城后台管理.商品信息(name, author, money, date, store)VALUES('1','1','1','1','1')")
int addGoodsF();
---------------------------------------分割线------------------------------------
@Data
public class GoodsInformation {
private String name;
private String author;
private String money;
private String date;
private int store;
}
第二个方法可以顺利执行,但是第一个方法在调用时,既不插入数据,也不报错,程序一直停在第一个方法的调用那里,也不知道为什么。