123456789101112131415161718192021222324 |
- package model
- type CommonList struct {
- Total int `json:"total",xml:"total"`
- Items []map[string]interface{} `json:"list",xml:"list"`
- }
- type NullObj struct {
- }
- type Page struct{
- PageNo int `json:"pageNo"`
- PageSize int `json:"pageSize"`
- }
- type QueryId struct {
- Id int `json:"id"`
- }
- type QueryTableColn struct{
- QueryId
- TableName string `json:"tableName"`
- }
|