types.go 560 B

12345678910111213141516171819
  1. // Code generated by goctl. DO NOT EDIT.
  2. package types
  3. type DatasmtReqList struct {
  4. SearchValue string `json:"searchValue,optional"` //并发量
  5. DataType string `json:"dataType,optional"` //并发量
  6. PageNum int64 `json:"pageNum,optional"` //并发量
  7. PageSize int64 `json:"pageSize,optional"` //并发量
  8. }
  9. type DatasmtReqDetail struct {
  10. Id string `json:"id,optional"` //并发量
  11. }
  12. type CommonResp struct {
  13. Err_code int64 `json:"error_code"`
  14. Err_msg string `json:"error_msg"`
  15. Data interface{} `json:"data"`
  16. }