zhengyiming
昨天 8fc6708fe8222b39c56369373721c54b7e1f51f0
FlexJobApi.UserServer.Application/Users/Queries/GetPersonalUserTransactionsQueryHandler.cs
@@ -34,9 +34,7 @@
            var logier = JwtUtils.GetCurrentLogier();
            var q = rep.AsQueryable().AsNoTracking()
                .OrderByDescending(it => it.CreatedTime)
                .Where(it =>
                    it.Wallet.UserId == logier.Id
                    && it.TransactionStatus == EnumWalletTransactionStatus.Success);
                .Where(it => it.Wallet.UserId == logier.Id);
            if (request.CreatedTimeStart.HasValue && request.CreatedTimeEnd.HasValue)
            {