fusenapi/model/gmodel/ldap_user_logic.go
laodaming f8b8d98723 fix
2023-11-16 16:57:29 +08:00

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
}