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.
|
|
|
package auth
|
|
|
|
|
|
|
|
type AuthenticationForm struct {
|
|
|
|
Id int64 `form:"id"`
|
|
|
|
Type int `form:"type"`
|
|
|
|
Name string `form:"name" binding:"MaxSize(50)"`
|
|
|
|
Domain string `form:"domain"`
|
|
|
|
Host string `form:"host"`
|
|
|
|
Port int `form:"port"`
|
|
|
|
BaseDN string `form:"base_dn"`
|
|
|
|
Attributes string `form:"attributes"`
|
|
|
|
Filter string `form:"filter"`
|
|
|
|
MsAdSA string `form:"ms_ad_sa"`
|
|
|
|
IsActived bool `form:"is_actived"`
|
|
|
|
}
|