annotation/internal/proto/request.go

19 lines
460 B
Go
Raw Normal View History

2023-05-12 16:53:21 +08:00
package proto
type ListRequest struct {
Path string `json:"path"`
IsIncludeSubdirectories bool `json:"isIncludeSubdirectories"`
}
type LabelRequest struct {
FileList []string `json:"fileList"`
LabelStatus bool `json:"labelStatus"`
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"`
}