Documentation
¶
Index ¶
Constants ¶
View Source
const ( // Silent success Silent = "0" // MessageWarn message warn MessageWarn = "1" // MessageError message error MessageError = "2" // Notification notification Notification = "4" // Page page Page = "9" )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Pages ¶
type Pages struct { Total int `json:"total,omitempty"` Current int `json:"current,omitempty"` PageSize int `json:"pageSize,omitempty"` }
Pages 分页数据
type Response ¶
type Response struct { Success bool `json:"success,omitempty"` // if request is success ErrorCode string `json:"errorCode,omitempty"` // code for errorType ErrorMessage string `json:"errorMessage,omitempty"` // message display to user ShowType string `json:"showType,omitempty"` // error display type: 0 silent; 1 message.warn; 2 message.error; 4 notification; 9 page TraceID string `json:"traceId,omitempty"` // Convenient for back-end Troubleshooting: unique request ID Host string `json:"host,omitempty"` // onvenient for backend Troubleshooting: host of current access server }
Response response
Click to show internal directories.
Click to hide internal directories.