fit:修改modelarts proto

This commit is contained in:
qiwang 2023-03-02 10:48:01 +08:00
parent c487204e23
commit 48e92d328d
1 changed files with 28 additions and 0 deletions

View File

@ -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"`
}