2023-06-19 10:27:31 +00:00
|
|
|
package gmodel
|
2023-06-26 10:19:51 +00:00
|
|
|
|
|
|
|
import "context"
|
|
|
|
|
|
|
|
// TODO: 使用model的属性做你想做的
|
|
|
|
|
|
|
|
func (m *FsQuotationModel) FindOneOnlyById(ctx context.Context, quotationId int64) (resp FsQuotation, err error) {
|
2023-06-27 10:09:56 +00:00
|
|
|
err = m.db.WithContext(ctx).Model(&resp).Where("`id` = ?", quotationId).Take(&resp).Error
|
2023-06-26 10:19:51 +00:00
|
|
|
return resp, err
|
|
|
|
}
|