fusenapi/model/gmodel/fs_product_template_element_logic.go
laodaming 82c7fc96f5 fix
2023-08-17 11:56:37 +08:00

14 lines
425 B
Go

package gmodel
import "context"
// TODO: 使用model的属性做你想做的
func (e *FsProductTemplateElementModel) FindOneByModelId(ctx context.Context, modelId int64) (resp *FsProductTemplateElement, err error) {
err = e.db.WithContext(ctx).Model(&FsProductTemplateElement{}).
//以前的神仙员工把表model_id变成product_template_id
Where("`model_id` = ?", modelId).
Take(&resp).Error
return resp, err
}