|
|
@ -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> : |
|
|
|