11 lines
209 B
Go
11 lines
209 B
Go
package domain
|
|
|
|
type SiYuanReq struct {
|
|
KBID string `json:"kb_id" validate:"required"`
|
|
}
|
|
type SiYuanResp struct {
|
|
Id int `json:"id"`
|
|
Title string `json:"title"`
|
|
Content string `json:"content"`
|
|
}
|