mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 18:00:24 +08:00
12 lines
393 B
Go
12 lines
393 B
Go
package template
|
|
|
|
// New defines the template for creating model instance.
|
|
const New = `
|
|
func new{{.upperStartCamelObject}}Model(conn sqlx.SqlConn{{if .withCache}}, c cache.CacheConf{{end}}) *default{{.upperStartCamelObject}}Model {
|
|
return &default{{.upperStartCamelObject}}Model{
|
|
{{if .withCache}}CachedConn: sqlc.NewConn(conn, c){{else}}conn:conn{{end}},
|
|
table: {{.table}},
|
|
}
|
|
}
|
|
`
|