11 lines
294 B
Go
11 lines
294 B
Go
package gmodel
|
|
|
|
import "context"
|
|
|
|
// TODO: 使用model的属性做你想做的
|
|
|
|
func (g *FsGerentModel) Find(ctx context.Context, authKey string) (resp FsGerent, err error) {
|
|
err = g.db.WithContext(ctx).Model(&FsGerent{}).Where("`auth_key` = ?", authKey).Take(&resp).Error
|
|
return resp, err
|
|
}
|