common.go 405 B

123456789101112131415161718192021222324
  1. package model
  2. type CommonList struct {
  3. Total int `json:"total",xml:"total"`
  4. Items []map[string]interface{} `json:"list",xml:"list"`
  5. }
  6. type NullObj struct {
  7. }
  8. type Page struct{
  9. PageNo int `json:"pageNo"`
  10. PageSize int `json:"pageSize"`
  11. }
  12. type QueryId struct {
  13. Id int `json:"id"`
  14. }
  15. type QueryTableColn struct{
  16. QueryId
  17. TableName string `json:"tableName"`
  18. }