package viewmodel type ModelTreeNodeInfo struct { Label string `json:"label" xorm:"'label' varchar(50) comment('Label 名称') "` Value int64 `json:"value" xorm:"'value' bigint comment('Value ID') "` IsLeaf int64 `json:"isLeaf" xorm:"'isLeaf' bigint comment('Is Leaf') "` ObjectId int64 `json:"objectId" xorm:"'object_id' bigint comment('Object ID') "` ObjectType int64 `json:"objectType" xorm:"'object_type' bigint comment('Object Type') "` ObjectTitle string `json:"objectTitle" xorm:"'object_title' varchar(127) comment('Object Title') "` ObjectCode string `json:"objectCode" xorm:"'object_code' varchar(127) comment('Object Code') "` Comment string `json:"comment" xorm:"'comment' varchar(255) comment('Comment') "` IsFixed int64 `json:"isFixed" xorm:"'is_fixed' int comment('Is Fixed?') "` }