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