7 lines
333 B
Smarty
7 lines
333 B
Smarty
|
func new{{.upperStartCamelObject}}Model(conn sqlx.SqlConn{{if .withCache}}, c cache.CacheConf, opts ...cache.Option{{end}}) *default{{.upperStartCamelObject}}Model {
|
||
|
return &default{{.upperStartCamelObject}}Model{
|
||
|
{{if .withCache}}CachedConn: sqlc.NewConn(conn, c, opts...){{else}}conn:conn{{end}},
|
||
|
table: {{.table}},
|
||
|
}
|
||
|
}
|