package models type TZhxyClouddiskTree struct { NodeId string `xorm:"not null pk comment('结点ID') CHAR(36)"` NodeName string `xorm:"not null comment('结点名称') VARCHAR(255)"` ParentId string `xorm:"not null comment('父结点ID') CHAR(36)"` IdentityId int32 `xorm:"not null comment('所有人的身份') INT(11)"` PersonId int32 `xorm:"not null comment('所有人的ID') INT(11)"` }