Fork me on GitHub
摘要: 一、基本创建 (一)单条数据创建 模型表 type Base struct { ID int Name string Age int } 方法一 通过数据的指针来创建 base := Base{Name: "lily", Age: 18} result := db.Create(&base) //通 阅读全文
posted @ 2022-03-04 07:59 iveBoy 阅读(1663) 评论(0) 推荐(0) 编辑
TOP