1
0
Fork 0

user 모델 제작중

This commit is contained in:
Sangbum Kim 2016-03-15 00:25:16 +09:00
parent c21ca252a3
commit 13d33d584d
1 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,9 @@
package model package model
inter type User struct{
id string 'ldap:uid'
lastName string 'ldap:sn'
firstName string 'ldap:givenName'
email string 'ldap:mail'
}