【修复】导出功能

This commit is contained in:
PandaGoAdmin
2022-07-13 19:06:25 +08:00
parent 433ee08634
commit 63916db425
8 changed files with 23 additions and 53 deletions

View File

@@ -2,18 +2,9 @@ package entity
import "pandax/base/model"
type UserName struct {
Username string `gorm:"type:varchar(64)" json:"username"`
}
type PassWord struct {
// 密码
Password string `gorm:"type:varchar(128)" json:"password"`
}
type LoginM struct {
UserName
PassWord
Username string `gorm:"type:varchar(64)" json:"username"`
Password string `gorm:"type:varchar(128)" json:"password"`
}
type SysUserId struct {