Fix JSON field naming inconsistency in ListView
struct.
This commit is contained in:
		@@ -100,7 +100,7 @@ type History struct {
 | 
				
			|||||||
type ListView struct {
 | 
					type ListView struct {
 | 
				
			||||||
	Code     int           `json:"code"`
 | 
						Code     int           `json:"code"`
 | 
				
			||||||
	Page     int           `json:"page"`
 | 
						Page     int           `json:"page"`
 | 
				
			||||||
	PageSize int           `json:"page_size"`
 | 
						PageSize int           `json:"pageSize"`
 | 
				
			||||||
	Total    int           `json:"total"`
 | 
						Total    int           `json:"total"`
 | 
				
			||||||
	Next     bool          `json:"next"`
 | 
						Next     bool          `json:"next"`
 | 
				
			||||||
	List     []interface{} `json:"list"`
 | 
						List     []interface{} `json:"list"`
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user