vo.go 276 B

12345678910111213
  1. package ldap
  2. // LDAPLoginReq LDAP登录
  3. type LDAPLoginReq struct {
  4. Server string `json:"server"`
  5. Account string `json:"account"`
  6. Password string `json:"password"`
  7. }
  8. type LDAPUserSyncReq struct {
  9. Filter string `json:"filter"`
  10. ServerKey string `json:"serverKey"`
  11. }