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.
9 lines
413 B
9 lines
413 B
package models
|
|
|
|
type TBasePrincipalshipMenu struct {
|
|
Id int64 `xorm:"not null pk autoincr comment('主键') INT(11)"`
|
|
DutiesId int64 `xorm:"not null comment('职务') unique(duties_id) index(duties_id_2) INT(11)"`
|
|
InChargeId int64 `xorm:"not null comment('分管工作') unique(duties_id) index(duties_id_2) INT(11)"`
|
|
MenuId int64 `xorm:"not null comment('菜单') unique(duties_id) INT(11)"`
|
|
}
|