lingling
2025-03-21 ff7920ed1f3b0ff3f4fccd97c4b31b80fb63b142
LifePayment/LifePayment.Application/Setting/OperateHistoryService.cs
@@ -43,15 +43,17 @@
        public async Task<PageOutput<OperateHistoryDto>> GetOperateHistoryByType(QueryOperateHistoryByTypeInput input)
        {
            var query = _operateHistory.AsQueryable();
            switch (input.OperateHistoryType)
            {
                case OperateHistoryTypeEnum.AccountManage:
                    query = query.Where(x => x.UserId == input.TypeId
                                          && LifePaymentConstant.LogsSpecies.AccountManageOperateNameList.Contains(x.OperateName));
                    break;
                case OperateHistoryTypeEnum.LifePayChannles:
                    query = query.Where(x => x.RelationId == input.TypeId);
                    break;
                default:
                    query = query.Where(x => x.RelationId == input.TypeId);