12345678910111213141516171819 |
- // Code generated by goctl. DO NOT EDIT.
- package types
- type DatasmtReqList struct {
- SearchValue string `json:"searchValue,optional"` //并发量
- DataType string `json:"dataType,optional"` //并发量
- PageNum int64 `json:"pageNum,optional"` //并发量
- PageSize int64 `json:"pageSize,optional"` //并发量
- }
- type DatasmtReqDetail struct {
- Id string `json:"id,optional"` //并发量
- }
- type CommonResp struct {
- Err_code int64 `json:"error_code"`
- Err_msg string `json:"error_msg"`
- Data interface{} `json:"data"`
- }
|