Browse Source

修改

集成Redis
Zheng 2 years ago
parent
commit
c24b7141af
  1. 4
      WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.Application.Contracts/AppBase/Filters/Condition.cs
  2. 5
      WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.Application.Contracts/AppBase/ISfsRequest.cs
  3. 16
      WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.Application.Contracts/AppBase/IZbxBase.cs
  4. 5
      WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.Application.Contracts/AppBase/SfsRequestInputBase.cs
  5. 13
      WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.Application/AppBase/ZbxBase.cs
  6. 2
      WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.Application/AppBaseBusiness/ExportCustomUserSetting/ExportCustomUserSettingAppService.cs

4
WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.Application.Contracts/AppBase/Filters/Condition.cs

@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace WinIn.FasterZ.Wms.AppBase.Filters;
namespace WinIn.FasterZ.Store.AppBase.Filters;
using System.Collections.Generic;
public class Condition
{

5
WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.Application.Contracts/AppBase/ISfsRequest.cs

@ -1,7 +1,8 @@
namespace WinIn.FasterZ.Wms.AppBase;
using Volo.Abp.Application.Dtos;
using WinIn.FasterZ.Store.AppBase.Filters;
namespace WinIn.FasterZ.Store.AppBase;
using WinIn.FasterZ.Wms.AppBase.Filters;
public interface ISfsRequest : IPagedAndSortedResultRequest
{

16
WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.Application.Contracts/AppBase/IZbxBase.cs

@ -1,11 +1,13 @@
using System;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Volo.Abp.Application.Dtos;
namespace WinIn.FasterZ.Store.AppBase
namespace WinIn.FasterZ.Wms.AppBase
{
using System;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Volo.Abp.Application.Dtos;
public interface IZbxBase<TEntity, TEntityDto, TPagedAndSortedResultRequestDto, TKey, TCreateInput, TUpdateInput>
{
Task<PagedResultDto<TEntityDto>> GetPageListByFilterAsync(SfsRequestInputBase sfsRequestInputBase,

5
WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.Application.Contracts/AppBase/SfsRequestInputBase.cs

@ -1,7 +1,8 @@
namespace WinIn.FasterZ.Wms.AppBase;
using Volo.Abp.Application.Dtos;
using WinIn.FasterZ.Store.AppBase.Filters;
namespace WinIn.FasterZ.Store.AppBase;
using WinIn.FasterZ.Wms.AppBase.Filters;
public class SfsRequestInputBase : PagedAndSortedResultRequestDto, ISfsRequest
{

13
WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.Application/AppBase/ZbxBase.cs

@ -1,4 +1,6 @@
using System;
namespace WinIn.FasterZ.Wms.AppBase;
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
@ -7,25 +9,26 @@ using System.Linq.Dynamic.Core;
using System.Linq.Expressions;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Localization;
using NPOI.SS.UserModel;
using NPOI.XSSF.UserModel;
using Volo.Abp.Application.Dtos;
using Volo.Abp.Application.Services;
using Volo.Abp.Domain.Entities;
using Volo.Abp.Domain.Repositories;
using WinIn.FasterZ.Store.AppBase;
using WinIn.FasterZ.Store.AppBase.Filters;
using WinIn.FasterZ.Store.AppBase.TableColumnTypeDto;
using WinIn.FasterZ.Store.AppBaseBusiness.ExportCustomUserSetting;
using WinIn.FasterZ.Store.Enums;
using WinIn.FasterZ.Wms.AppBase.Extensions;
using WinIn.FasterZ.Wms.AppBaseBusiness.ExportCustomUserSetting;
namespace WinIn.FasterZ.Store.AppBase;
using WinIn.FasterZ.Wms.Localization;
public class ZbxBase<TEntity, TEntityDto, TKey, TPagedAndSortedResultRequestDto, TCreateInput, TUpdateInput> :

2
WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.Application/AppBaseBusiness/ExportCustomUserSetting/ExportCustomUserSettingAppService.cs

@ -10,6 +10,8 @@ using WinIn.FasterZ.Wms.Permissions;
namespace WinIn.FasterZ.Wms.AppBaseBusiness.ExportCustomUserSetting
{
using WinIn.FasterZ.Wms.AppBase;
/// <summary>
/// 用户个型导出配置
/// </summary>

Loading…
Cancel
Save