2023-05-12 16:53:21 +08:00
|
|
|
package proto
|
|
|
|
|
|
|
|
type ListRequest struct {
|
|
|
|
Path string `json:"path"`
|
|
|
|
IsIncludeSubdirectories bool `json:"isIncludeSubdirectories"`
|
2023-06-17 09:40:14 +08:00
|
|
|
BasePageList
|
|
|
|
}
|
|
|
|
|
|
|
|
type BasePageList struct {
|
|
|
|
Page int64 `json:"page,omitempty" form:"page"`
|
|
|
|
Size int64 `json:"pageSize,omitempty" form:"pageSize"`
|
2023-05-12 16:53:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type LabelRequest struct {
|
|
|
|
FileList []string `json:"fileList"`
|
|
|
|
LabelStatus bool `json:"labelStatus"`
|
2023-06-09 17:43:08 +08:00
|
|
|
BizType int `json:"bizType"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type CaptureRequest struct {
|
|
|
|
FileList []string `json:"fileList"`
|
|
|
|
DatasetName string `json:"datasetName"`
|
2023-05-12 16:53:21 +08:00
|
|
|
BizType int `json:"bizType"`
|
|
|
|
}
|