9 lines
226 B
Go
9 lines
226 B
Go
|
package gmodel
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
// TODO: 使用model的属性做你想做的
|
||
|
func (u *LdapUserModel) Create(ctx context.Context, data *LdapUser) error {
|
||
|
return u.db.WithContext(ctx).Model(&LdapUser{}).Create(&data).Error
|
||
|
}
|