fusenapi/model/gmodel/ldap_user_logic.go

9 lines
226 B
Go
Raw Normal View History

2023-11-16 08:57:29 +00:00
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
}