qixiaoning
2025-09-04 87b55a899bc1b4bc7d5a0f8d6ad1a1ede233ebd1
1
2
3
4
5
6
7
8
9
 
package response
 
type (
    ResponseHead struct {
        Status   int                      `json:"code"`
        Msg      string                   `json:"msg"`
    }
)