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