Explorar el Código

update

master
shenjiachi hace 1 semana
padre
commit
d53af4c16d
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      app/svc/financial_center/svc_withdraw.go

+ 2
- 2
app/svc/financial_center/svc_withdraw.go Ver fichero

@@ -31,9 +31,9 @@ func WithDrawManagementGetApply(engine *xorm.Engine, req *md.GetWithdrawApplyLis
switch req.IsFirst {
case "1":
// 首次提现
session = session.Where("apply.is_first", req.IsFirst)
session = session.Where("apply.is_first = ?", req.IsFirst)
case "0":
session = session.Where("apply.is_first", req.IsFirst)
session = session.Where("apply.is_first = ?", req.IsFirst)
}

if req.WithdrawType != "" {


Cargando…
Cancelar
Guardar