移除没实现的限制多端登录

This commit is contained in:
xiangheng
2024-03-15 02:01:23 +08:00
parent a047a8592c
commit f3436ec298
9 changed files with 31 additions and 64 deletions

View File

@@ -22,7 +22,6 @@ type SystemAuthAdmin struct {
Role string `gorm:"not null;default:'';comment:'角色主键'"`
Salt string `gorm:"not null;default:'';comment:'加密盐巴'"`
Sort uint16 `gorm:"not null;default:0;comment:'排序编号'"`
IsMultipoint uint8 `gorm:"not null;default:0;comment:'多端登录: 0=否, 1=是''"`
IsDisable uint8 `gorm:"not null;default:0;comment:'是否禁用: 0=否, 1=是'"`
IsDelete uint8 `gorm:"not null;default:0;comment:'是否删除: 0=否, 1=是'"`
LastLoginIp string `gorm:"not null;default:'';comment:'最后登录IP'"`