2023-06-15 11:14:19 +00:00
|
|
|
package gmodel
|
|
|
|
|
|
|
|
import "context"
|
|
|
|
|
|
|
|
func (p *FsPayModel) GetListByOrderNumber(ctx context.Context, sn string) (resp []FsPay, err error) {
|
|
|
|
err = p.db.WithContext(ctx).Model(&FsPay{}).Where("`order_number` = ? ", sn).Find(&resp).Error
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
2023-06-20 11:36:28 +00:00
|
|
|
|
2023-06-16 10:24:31 +00:00
|
|
|
func (p *FsPayModel) GetOrderPayList(ctx context.Context, sn string, payStatus int64, isRefund int64) (resp []FsPay, err error) {
|
|
|
|
err = p.db.WithContext(ctx).Model(&FsPay{}).Where("`order_number` = ? and `pay_status` = ? and `is_refund` = ?", sn, payStatus, isRefund).Find(&resp).Error
|
2023-06-20 11:36:28 +00:00
|
|
|
return resp, err
|
2023-06-16 10:24:31 +00:00
|
|
|
}
|
2023-07-26 03:06:05 +00:00
|
|
|
|
|
|
|
func (p *FsPayModel) GetListByOrderNumberStage(ctx context.Context, sn string, stage int64) (resp *FsPay, err error) {
|
|
|
|
err = p.db.Table(p.name).WithContext(ctx).Model(&FsPay{}).Where("`order_number` = ? ", sn).Where("`pay_stage` = ? ", stage).Take(&resp).Error
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *FsPayModel) CreateOrUpdate(ctx context.Context, req *FsPay) (resp *FsPay, err error) {
|
|
|
|
rowBuilder := p.db.Table(p.name).WithContext(ctx)
|
|
|
|
if req.Id > 0 {
|
|
|
|
err = rowBuilder.Save(req).Error
|
|
|
|
} else {
|
|
|
|
err = rowBuilder.Create(req).Error
|
|
|
|
}
|
|
|
|
return req, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *FsPayModel) TableName() string {
|
|
|
|
return m.name
|
|
|
|
}
|