fusenapi/model/gmodel/fs_quotation_product_logic.go

11 lines
399 B
Go
Raw Normal View History

2023-06-19 18:27:31 +08:00
package gmodel
2023-06-26 18:19:51 +08:00
import "context"
// TODO: 使用model的属性做你想做的
2023-06-27 18:09:56 +08:00
func (c *FsQuotationProductModel) GetAllByQuotationIdOrderAsc(ctx context.Context, quotationId int64) (resp []*FsQuotationProduct, err error) {
2023-06-26 18:19:51 +08:00
err = c.db.WithContext(ctx).Model(&FsQuotationProduct{}).Where("`quotation_id` = ? and `status` = ?", quotationId, 1).Order("sort asc").Find(&resp).Error
return resp, err
}