api

package
v0.0.0-...-35a45e1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 5, 2019 License: BSD-3-Clause Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BaseRespBody

type BaseRespBody struct {
	// 返回码
	Code int `json:"code"`
	// 返回信息
	Message string `json:"message"`
	// 数据
	Data interface{} `json:"data,omitempty"`
}

BaseRespBody 基础返回结构

type GetUserRespAPI

type GetUserRespAPI struct {
	// 返回码
	Code int `json:"code"`
	// 返回信息
	Message string `json:"message"`
	// 内容
	Data val.GetUserResp `json:"data"`
}

GetUserRespAPI 查询用户 单个

type GetUsersRespAPI

type GetUsersRespAPI struct {
	// 返回码
	Code int `json:"code"`
	// 返回信息
	Message string `json:"message"`
	// 内容
	Data []val.GetUserResp `json:"data"`
}

GetUsersRespAPI 查询用户列表 全部

type GetUsersWithPageAPI

type GetUsersWithPageAPI struct {
	// 返回码
	Code int `json:"code"`
	// 返回信息
	Message string `json:"message"`
	// 内容
	Data UsersPageModelAPI `json:"content"`
}

GetUsersWithPageAPI 查询用户列表 分页

type UsersPageModelAPI

type UsersPageModelAPI struct {
	// 页码
	PageNum int `json:"page_num"`
	// 每页大小
	PageSize int `json:"page_size"`
	// 总页数
	TotalPages int64 `json:"total_pages"`
	// 总记录条数
	TotalRecords int64 `json:"total_records"`
	// 数据
	Records []val.GetUserResp `json:"records"`
}

UsersPageModelAPI 查询用户分页内容

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL