package vo
|
|
import "vamicro/stack-service/models"
|
|
type IdArrVo struct {
|
Ids []string `json:"ids" binding:"required"`
|
}
|
|
|
type SortVo struct {
|
Id string `json:"id" binding:"required"`
|
Direct int `json:"direct" binding:"required"`
|
}
|
|
type FileIfRule struct {
|
models.FileAnalysis
|
HasRule bool `json:"hasRule"`
|
}
|
|
type FileMoveVo struct {
|
Id string `json:"id" binding:"required"`
|
StackIds []string `json:"stackIds" binding:"required"`
|
}
|
|
type PageResult struct {
|
Total int `json:"total"`
|
DataList interface{} `json:"dataList"`
|
}
|