1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package apis
- type TGdErrorCode struct {
- Id int64 `json:"id"`
- Code string `json:"code"`
- Msg string `json:"msg"`
- }
- type ManagementAddErrorReq struct {
- Code string `json:"code"`
- Msg string `json:"msg"`
- }
- type ManagementAddErrorReply struct {
- Id int64 `json:"id"`
- }
- type ManagementDelErrorReq struct {
- Id int64 `json:"id"`
- }
- type ManagementDelErrorReply struct {
- }
- type ManagementUpdateErrorReq struct {
- Id int64 `json:"id"`
- Code string `json:"code"`
- Msg string `json:"msg"`
- }
- type ManagementUpdateErrorReply struct {
- }
- type ManagementGetErrorListReq struct {
- PageNumber int `json:"page_number"`
- IsAll bool `json:"is_all"`
- }
- type ManagementGetErrorListReply struct {
- Total int `json:"total"`
- PageSize int `json:"page_size"`
- PageNumber int `json:"page_number"`
- ErrorCodeList []TGdErrorCode `json:"error_code_list"`
- }
|