group_tree_view_info.go 633 B

123456789
  1. package viewmodel
  2. type GroupTreeViewInfo struct {
  3. Id int64 `json:"id" xorm:"'id' bigint not null pk comment('ID') " `
  4. Label string `json:"label" xorm:"'label' varchar(127) not null comment('群组名称') " `
  5. GroupId int64 `json:"groupId" xorm:"'group_id' bigint not null pk comment('群组ID') " `
  6. GroupName string `json:"groupName" xorm:"'group_name' varchar(127) not null comment('群组名称') " `
  7. Children []GroupTreeViewInfo `json:"children"`
  8. }