- package viewmodel
- type GroupTreeViewInfo struct {
- Id int64 `json:"id" xorm:"'id' bigint not null pk comment('ID') " `
- Label string `json:"label" xorm:"'label' varchar(127) not null comment('群组名称') " `
- GroupId int64 `json:"groupId" xorm:"'group_id' bigint not null pk comment('群组ID') " `
- GroupName string `json:"groupName" xorm:"'group_name' varchar(127) not null comment('群组名称') " `
- Children []GroupTreeViewInfo `json:"children"`
- }
|