| 123456789101112131415161718192021222324 |
- // This file is generated by GoAdmin CLI adm.
- package tables
- import "github.com/GoAdminGroup/go-admin/plugins/admin/modules/table"
- // Generators is a map of table models.
- //
- // The key of Generators is the prefix of table info url.
- // The corresponding value is the Form and Table data.
- //
- // http://{{config.Domain}}:{{Port}}/{{config.Prefix}}/info/{{key}}
- //
- // example:
- //
- // "certify_info" => http://localhost:9033/admin/info/certify_info
- //
- // example end
- //
- var Generators = map[string]table.Generator{
- "certify_info": GetCertifyInfoTable,
- // generators end
- }
|