蛋蛋星球 后台端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 regels
718 B

  1. package md
  2. type AdminLogListReq struct {
  3. Page string `json:"page,required"` // 页数
  4. Limit string `json:"limit,required"` // 每页大小
  5. Type string `json:"type"`
  6. Memo string `json:"memo"`
  7. StartTime string `json:"start_time"`
  8. EndTime string `json:"end_time"`
  9. }
  10. type AdminLogList struct {
  11. Id string `json:"id"`
  12. Type string `json:"type"`
  13. Memo string `json:"memo"`
  14. Time string `json:"time"`
  15. Ip string `json:"ip"`
  16. Phone string `json:"phone"`
  17. AdminId string `json:"admin_id"`
  18. }
  19. type AdminLogListResp struct {
  20. Total int64 `json:"total"`
  21. TypeList []map[string]interface{} `json:"type_list"`
  22. List []AdminLogList `json:"list"`
  23. }