fit:修改modelarts proto
This commit is contained in:
parent
c487204e23
commit
48e92d328d
|
@ -0,0 +1,28 @@
|
|||
// Code generated by goctl. DO NOT EDIT.
|
||||
package types
|
||||
|
||||
type DataSet struct {
|
||||
DatasetId string `json:"datasetId"`
|
||||
DataFormat string `json:"dataFormat"`
|
||||
DatasetFormat int32 `json:"datasetFormat"`
|
||||
DatasetName string `json:"datasetName"`
|
||||
DatasetType string `json:"datasetType"`
|
||||
ImportData bool `json:"importData"`
|
||||
DataSources []DataSources `json:"DataSources"`
|
||||
}
|
||||
|
||||
type DataSources struct {
|
||||
DataPath string `json:"dataPath"`
|
||||
DataType string `json:"dataType"`
|
||||
}
|
||||
|
||||
type ListDataSetReq struct {
|
||||
ProjectId string `json:"projectId"`
|
||||
}
|
||||
|
||||
type ListDataSetResp struct {
|
||||
Code int32 `json:"code"`
|
||||
Msg string `json:"msg"`
|
||||
RecordCount int32 `json:"recordCount"`
|
||||
DataSet []DataSet `json:"dataSets"`
|
||||
}
|
Loading…
Reference in New Issue