| 1234567891011121314151617181920212223 | package models//标签列表返回信息type LabelListResponse struct {	Title  string   `json:"title"`	Config []Config `json:"config"`}type Config struct {	Content   string `json:"content"`	Size      string `json:"size"`	BgColor   string `json:"bgColor"`	FontColor string `json:"fontColor"`	Plain     bool   `json:"plain"`	Select    bool   `json:"select"`	Shape     string `json:"shape"`	IconName  string `json:"iconName"`	IconSize  string `json:"iconSize"`	IconColor string `json:"iconColor"`}type LabelInsertRequest struct {	Label string `json:"label"`}
 |