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