package ldap import "nginx-ui/server/vo" // LDAPLoginReq LDAP登录 type LDAPLoginReq struct { ServerKey string `json:"serverKey"` Account string `json:"account"` Password string `json:"password"` } type LDAPUserSyncReq struct { Filter string `json:"filter"` ServerKey string `json:"serverKey"` } type VerifyReq struct { Id int `json:"id"` Active bool `json:"active"` Filter string `json:"filter"` // 搜索指定的账号 Username string `json:"username"` } type UserListReq struct { *vo.PageReq ServerKey string `json:"serverKey"` } type UpdatePasswordReq struct { Account string `json:"account"` Password string `json:"password"` OldPassword string `json:"oldPassword"` }