Documentation
      ¶
    
    
  
    
  
    Index ¶
- Constants
 - func Custum(c *gin.Context, data gin.H)
 - func Error(c *gin.Context, errCode string, errMsg string, showType string)
 - func ListOK(c *gin.Context, result interface{}, total int, current int, pageSize int)
 - func OK(c *gin.Context, data interface{})
 - func PageOK(c *gin.Context, result interface{}, total int, current int, pageSize int)
 - func UpFileOK(c *gin.Context, data interface{})
 - type ListData
 - type Pages
 - type Response
 
Constants ¶
      View Source
      
  
const ( Silent = "0" MessageWarn = "1" MessageError = "2" Notification = "4" Page = "9" )
Variables ¶
This section is empty.
Functions ¶
Types ¶
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
	Status       string `json:"status,omitempty"`
}
     Click to show internal directories. 
   Click to hide internal directories.