mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-08 07:30:01 +08:00
11 lines
329 B
Go
11 lines
329 B
Go
package template
|
|
|
|
var New = `
|
|
func New{{.upperStartCamelObject}}Model(conn sqlx.SqlConn,{{if .withCache}} c cache.CacheConf,{{end}} table string) *{{.upperStartCamelObject}}Model {
|
|
return &{{.upperStartCamelObject}}Model{
|
|
{{if .withCache}}CachedConn: sqlc.NewConn(conn, c){{else}}conn:conn{{end}},
|
|
table: table,
|
|
}
|
|
}
|
|
`
|