liuxiaolong
2020-08-10 9358e5ec2d2b65fec4ef9a1be7d1a1e1e2cf9d2d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package vo
 
 
type HikResult struct {
    Code             string             `json:"code"`
    Msg             string             `json:"msg"`
    Data             interface{}        `json:"data"`
}
 
type HikPageResult struct {
    Total             int             `json:"total"`
    PageNo            int             `json:"pageNo"`
    PageSize         int             `json:"pageSize"`
    List             interface{}      `json:"list"`
}