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