saw-go/proto/kbase.go

10 lines
451 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package proto
type KnowledgeBaseReq struct {
ID uint `json:"id" form:"id"` // 知识库ID
UUID string `json:"uuid" form:"uuid"` // 知识库UUID
Name string `json:"name" form:"name"` // 知识库名称
Description string `json:"description" form:"description"` // 知识库描述
FileIDS string `json:"file_ids" form:"file_ids"` // 文件ID列表逗号分隔
}