You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
413 B
10 lines
413 B
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)"`
|
|
}
|