1234567891011121314151617181920212223 |
- // Code generated by goctl. DO NOT EDIT.
- package types
- type Reply struct {
- Error_code int64 `json:"error_code"`
- Error_msg string `json:"error_msg"`
- Data interface{} `json:"data"`
- }
- type SqlManageReq struct {
- Id int64 `json:"id"`
- Params []Param `json:"params"`
- }
- type Param struct {
- Value string `json:"value"`
- Type string `json:"type"`
- }
- type MyInfoReq struct {
- Bid string `json:"bid "`
- Sid string `json:"sid "`
- }
|