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