引入luban配表 需要命令行 npm install buffer

This commit is contained in:
2025-08-12 15:01:59 +08:00
parent dad0f47974
commit af96a12845
166 changed files with 15164 additions and 41 deletions
+28
View File
@@ -0,0 +1,28 @@
{{~if __namespace != ''~}}
package {{__namespace}};
{{~end~}}
type JsonLoader func(string) ([]map[string]interface{}, error)
type {{__name}} struct {
{{~for table in __tables ~}}
{{table.name}} *{{full_name table}}
{{~end~}}
}
func NewTables(loader JsonLoader) (*{{__name}}, error) {
var err error
var buf []map[string]interface{}
tables := &{{__name}}{}
{{~for table in __tables ~}}
if buf, err = loader("{{table.output_data_file}}") ; err != nil {
return nil, err
}
if tables.{{table.name}}, err = New{{full_name table}}(buf) ; err != nil {
return nil, err
}
{{~end~}}
return tables, nil
}