| 12345678910111213141516171819202122 |
- package models
- import (
- //__import_packages__
- )
- type PageQueryParam struct {
-
- //表名
- TableName string `json:"table_name"`
- //选择列
- SelectFields []string `json:"select_fields"`
- //总数
- JoinTables []Join `json:"join_tables"`
- }
- func init() {
- AddTableName("page_query_param")
- }
|