作者 tangxvhui

bug 修复

... ... @@ -9,6 +9,7 @@ const (
)
// 合伙类别 (1.研发合伙人 2.业务合伙人 3.事业)
//合伙类别 (1.事业合伙人 2.业务合伙人 3.研发合伙人)
const (
PARTNER_CATEGORY_1 int = 1
PARTNER_CATEGORY_2 int = 2
... ...
... ... @@ -146,7 +146,7 @@ func (repository OrderRepository) CountAll(queryOption domain.OrderFindQuery) (i
func (repository OrderRepository) FindOne(qureyOptions domain.OrderFindOneQuery) (*domain.Order, error) {
var (
err error
tx = repository.transactionContext.PgTx
tx = repository.transactionContext.PgDd
)
m := new(models.Order)
err = tx.Model(m).
... ...