根据模型快速生成基于gin和gorm的嵌入项目 标签: 凝乳 搜索 搜索:喜欢模糊查询 search:true搜索 例子: type TestModel struct { Model Account string `gorm:"account" curd:"search" binding:"required"` Password string `gorm:"password"` RealName string `gorm:"real_name"` } package main import ( "github.com/liujunren93/curl_gin/example/handler/models" "fmt" curd "github.com/liujunren93/curl_gin" ) func main () { //build() } func bu