广汽安道拓Acura项目MES后台
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.

8 lines
396 B

  1. package global
  2. type User struct {
  3. PlantNr int `xorm:"not null pk comment('工厂ID') INT(0)" form:"pid" json:"plantNr"`
  4. UserId string `xorm:"not null pk comment('用户ID') VARCHAR(40)" form:"userid" json:"userId"`
  5. Role string `xorm:"comment('用户角色') VARCHAR(40)" form:"role" json:"role"`
  6. RoleId int `xorm:"comment('角色编码') int(11)" json:"roleId"` // 角色编码
  7. }