From 47a20fd857cff04ca1242b83b8fc0e5f4965e571 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A6=20=E8=B5=B5?= <89237069@qq.com> Date: Sat, 8 Jul 2023 10:03:05 +0800 Subject: [PATCH 01/14] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SettleAccount.HttpApi.Host.csproj | 10 +- .../BaseDomainServices/BaseDomainService.cs | 104 +++++++++++++++ .../SettleAccount.Domain/Bases/EntityBase.cs | 2 +- .../ISettleAccountBranchEfCoreRepository.cs | 57 +++++++-- .../SettleAccountBQEfCoreRepository.cs | 119 ++++++++++++++++++ 5 files changed, 279 insertions(+), 13 deletions(-) create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Bases/BaseDomainServices/BaseDomainService.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Repository/SettleAccountBQEfCoreRepository.cs diff --git a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/SettleAccount.HttpApi.Host.csproj b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/SettleAccount.HttpApi.Host.csproj index 1672c209..d83c1464 100644 --- a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/SettleAccount.HttpApi.Host.csproj +++ b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/SettleAccount.HttpApi.Host.csproj @@ -1,4 +1,4 @@ - + @@ -12,11 +12,11 @@ ..\..\..\.. net5.0 True -<<<<<<< HEAD + false -======= - false ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 + + + diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Bases/BaseDomainServices/BaseDomainService.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Bases/BaseDomainServices/BaseDomainService.cs new file mode 100644 index 00000000..f2c00079 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Bases/BaseDomainServices/BaseDomainService.cs @@ -0,0 +1,104 @@ +using SettleAccount.Bases; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Volo.Abp.Caching; +using Volo.Abp.Domain.Repositories; +using Volo.Abp.Domain.Services; +using Volo.Abp.Guids; +using Volo.Abp.ObjectMapping; +using Win.Sfs.SettleAccount.Boms; +using Win.Sfs.SettleAccount.CommonManagers; +using Win.Sfs.SettleAccount.Entities.ImportMap; +using Win.Sfs.SettleAccount.Entities.Materials; +using Win.Sfs.SettleAccount.FISes; +using Win.Sfs.SettleAccount.MaterialRelationships; + +namespace Win.Sfs.SettleAccount.Bases.DomainServices +{ + public class BaseDomainService:DomainService, ICheck + { + private readonly ISettleAccountBQEfCoreRepository _materialRepository; + private readonly ISettleAccountBQEfCoreRepository _relationshipRepository; + private readonly ISettleAccountBQEfCoreRepository _bomshipRepository; + + public BaseDomainService( + IGuidGenerator guidGenerator, + IObjectMapper objectMapper, + ISettleAccountBQEfCoreRepository materialRepository, + ISettleAccountBQEfCoreRepository relationshipRepository, + ISettleAccountBQEfCoreRepository bomshipRepository + //IExcelImportAppService excelImportService, + //ISnowflakeIdGenerator snowflakeIdGenerator, + //ICommonManager commonManager + ) + { + _materialRepository = materialRepository; + _relationshipRepository = relationshipRepository; + _bomshipRepository = bomshipRepository; + } + + public async Task> CheckBase(List p_list ,BASE_CONF p_config) where TEntity : ISBASE + + { + List errorList = new List(); + var partList= p_list.Select(p=>p.LU).Distinct().ToList(); + + if (p_config.IsBom == true) + { + var bomList =await _bomshipRepository.ToListAsync(); + var query=from itm in partList join itm1 in bomList on itm equals itm1.ParentItemCode + into temp + from tm in temp.DefaultIfEmpty() + where tm == null + select itm; + + foreach(var itm1 in query.ToList()) + { + errorList.Add(itm1); + } + } + if (p_config.IsMaterial == true) + { + + var materialList = await _materialRepository.ToListAsync(); + var query = from itm in partList + join itm1 in materialList on itm equals itm1.MaterialCode + into temp + from tm in temp.DefaultIfEmpty() + where tm == null + select itm; + foreach (var partcode in query.ToList()) + { + errorList.Add(partcode); + } + } + if (p_config.IsRelationShip == true) + { + var materialList =await _relationshipRepository.ToListAsync(); + var query = from itm in partList + join itm1 in materialList on itm equals itm1.SettleMaterialCode + into temp + from tm in temp.DefaultIfEmpty() + where tm == null + select itm; + + foreach (var partcode in query.ToList()) + { + errorList.Add(partcode); + } + } + return errorList; + } + + + } + public interface ICheck + { + Task> CheckBase(List p_list, BASE_CONF p_config) where TEntity : ISBASE; + } + + +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Bases/EntityBase.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Bases/EntityBase.cs index 1b2083b7..a9222561 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Bases/EntityBase.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Bases/EntityBase.cs @@ -7,7 +7,7 @@ using System.Threading.Tasks; using Win.Sfs.SettleAccount.Entities.SettleAccountDomain; using static System.Runtime.CompilerServices.RuntimeHelpers; -namespace Win.Sfs.SettleAccount.Bases +namespace SettleAccount.Bases { /// /// 所有业务单据基类 diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/ISettleAccountBranchEfCoreRepository.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/ISettleAccountBranchEfCoreRepository.cs index b44b500d..ddc476d9 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/ISettleAccountBranchEfCoreRepository.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/ISettleAccountBranchEfCoreRepository.cs @@ -11,10 +11,8 @@ using System.Data.Common; using System.Data; using System.Data.SqlClient; - - - - +using System.Threading; +using Win.Sfs.Shared.Filter; namespace Win.Sfs.SettleAccount { @@ -29,7 +27,52 @@ namespace Win.Sfs.SettleAccount - DbCommand CreateCommand(string commandText, CommandType commandType, params DbParameter[] parameters); - } + + } + + public interface ISettleAccountBQEfCoreRepository + : IWinEfCoreRepository + , ITransientDependency + where TEntity : class, IEntity -} \ No newline at end of file + { + Task GetPropertyValueAsync(Func> factory, string propertyName); + + Task GetPropertyValueAsync(Func> factory, IEnumerable propertyNames, char separator); + Task> GetAllAsync( + + bool includeDetails = false, + CancellationToken cancellationToken = default); + + Task GetCountAsync( + + CancellationToken cancellationToken = default); + + Task GetCountByFilterAsync( + + List filters, + CancellationToken cancellationToken = default); + + + Task> GetListByFilterAsync( + + List filters, + string sorting = null, + int maxResultCount = int.MaxValue, + int skipCount = 0, + bool includeDetails = false, + CancellationToken cancellationToken = default); + + + + } + + + + + + + + + +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Repository/SettleAccountBQEfCoreRepository.cs b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Repository/SettleAccountBQEfCoreRepository.cs new file mode 100644 index 00000000..bae890c5 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Repository/SettleAccountBQEfCoreRepository.cs @@ -0,0 +1,119 @@ +using System; +using System.Collections.Generic; +using System.Data; +using System.Data.Common; +using System.Data.SqlClient; +using System.Linq; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Storage; +using Volo.Abp.DependencyInjection; +using Volo.Abp.Domain.Entities; +using Volo.Abp.EntityFrameworkCore; +using Win.Sfs.Shared; +using Win.Sfs.Shared.DomainBase; +using Win.Sfs.Shared.Filter; +using Win.Sfs.Shared.RepositoryBase; + +namespace Win.Sfs.SettleAccount.Repository +{ + public class SettleAccountBQEfCoreRepository : + SettleAccountEfCoreRepository, + ISettleAccountBQEfCoreRepository, + ITransientDependency + where TEntity : class, IBranch, IEntity + { + + private readonly IDbContextProvider _dbContextProvider; + + + + public SettleAccountBQEfCoreRepository(IDbContextProvider dbContextProvider) : + base(dbContextProvider) + { + + _dbContextProvider = dbContextProvider; + + } + public SettleAccountBQEfCoreRepository() : base(null) + { + + } + + public DbCommand CreateCommand(string commandText, CommandType commandType, params DbParameter[] parameters) + { + var command = DbContext.Database.GetDbConnection().CreateCommand(); + + command.CommandText = commandText; + command.CommandType = commandType; + command.Transaction = DbContext.Database.CurrentTransaction?.GetDbTransaction(); + + foreach (var parameter in parameters) + { + command.Parameters.Add(parameter); + } + + return command; + } + + public async Task EnsureConnectionOpenAsync(CancellationToken cancellationToken = default) + { + var connection = DbContext.Database.GetDbConnection(); + + if (connection.State != ConnectionState.Open) + { + await connection.OpenAsync(cancellationToken); + } + } + public virtual async Task> GetAllAsync( bool includeDetails = false, + CancellationToken cancellationToken = default) + { + var query = includeDetails ? this.WithDetails() : this.GetQueryable(); + + //query = query.Where(p => p.BranchId.Equals(branchId)); + + return await query.ToListAsync(cancellationToken: cancellationToken); + } + + public virtual async Task GetCountAsync(CancellationToken cancellationToken = default) + { + return await this.GetQueryable() + //.Where(p => p.BranchId.Equals(branchId)) + .LongCountAsync(GetCancellationToken(cancellationToken)); + + } + + public virtual async Task GetCountByFilterAsync( List filters, + CancellationToken cancellationToken = default) + { + return await this.GetQueryable() + //.Where(p => p.BranchId.Equals(branchId)) + .WhereIf(filters?.Count != 0, filters.ToLambda()) + .LongCountAsync(GetCancellationToken(cancellationToken)); + } + + public virtual async Task> GetListByFilterAsync( List filters, + string sorting = null, + int maxResultCount = int.MaxValue, int skipCount = 0, bool includeDetails = false, + CancellationToken cancellationToken = default) + { + var query = includeDetails ? this.WithDetails() : this.GetQueryable(); + // query = query.Where(p => p.BranchId.Equals(branchId)); + var entities = query.WhereIf(filters?.Count != 0, filters.ToLambda()); + //2021-07-02 设置sorting首字母大小,因设置了驼峰规则,不匹配“ var memberProp = typeof(T).GetProperty(propertyName);”反射 + if(!string.IsNullOrEmpty(sorting)) + { + sorting = sorting.Substring(0, 1).ToUpper() + sorting.Substring(1); + } + entities = GetSortingQueryable(entities, sorting); + return await entities.PageBy(skipCount, maxResultCount) + .ToListAsync(GetCancellationToken(cancellationToken)); + + + } + + } + + +} From 0fff5b3d7739c6991106bac37e99e374becf6e3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A7=9C=E6=97=AD=E4=B9=8B?= <12930972+jiang-xuzhi@user.noreply.gitee.com> Date: Mon, 10 Jul 2023 08:29:06 +0800 Subject: [PATCH 02/14] la qu --- .../Controllers/BBAC_SE_DETAILController.cs | 14 +++- .../Controllers/BBAC_SE_REPORTController.cs | 54 ++++++++++++++ .../Controllers/BJ_PUB_CAN_SAController.cs | 60 ++++++++++++++++ .../BJ_PUB_CAN_SA_DETAILController.cs | 45 ++++++++++++ .../Controllers/BJ_PUB_SE_DETAILController.cs | 46 ++++++++++++ ...E_DETAILController.cs => BOMController.cs} | 22 +++--- .../Controllers/HBPO_SE_DETAILController.cs | 10 +++ .../Controllers/HBPO_SE_REPORTController.cs | 54 ++++++++++++++ .../Controllers/IN_PUB_CAN_SAController.cs | 60 ++++++++++++++++ .../IN_PUB_CAN_SA_DETAILController.cs | 45 ++++++++++++ .../Controllers/IN_PUB_SE_DETAILController.cs | 53 ++++++++++++++ .../Controllers/IN_SE_DETAILController.cs | 34 --------- .../Controllers/JIT_PUB_CAN_SAController.cs | 72 +++++++++++++++++++ .../JIT_PUB_CAN_SA_DETAILController.cs | 45 ++++++++++++ .../JIT_PUB_SE_DETAILController.cs | 46 ++++++++++++ .../Controllers/JIT_SE_DETAILController.cs | 34 --------- .../Controllers/PURCHASE_PRICEController.cs | 20 ++++++ .../Identity/Data/Config/BaseDataDbConfig.cs | 18 ++--- .../Entities/SystemManagement/BBAC_CAN_SA.cs | 3 +- .../SystemManagement/BBAC_NOT_SA_DETAIL.cs | 3 +- .../SystemManagement/BBAC_PD_DETAIL.cs | 3 +- .../Entities/SystemManagement/BBAC_SA.cs | 3 +- .../SystemManagement/BBAC_SE_DETAIL.cs | 3 +- .../Entities/SystemManagement/BBAC_SE_EDI.cs | 5 +- .../SystemManagement/BBAC_SE_REPORT.cs | 5 +- .../SystemManagement/BBAC_SE_SA_REPORT.cs | 4 +- .../Entities/SystemManagement/BJ_SE_DETAIL.cs | 33 --------- .../{ => Group}/CaiWuShenHeGroup.cs | 0 .../Entities/SystemManagement/HBPO_CAN_SA.cs | 3 +- .../SystemManagement/HBPO_NOT_SA_DETAIL.cs | 3 +- .../SystemManagement/HBPO_PD_DETAIL.cs | 3 +- .../Entities/SystemManagement/HBPO_SA.cs | 3 +- .../SystemManagement/HBPO_SE_DETAIL.cs | 3 +- .../Entities/SystemManagement/HBPO_SE_EDI.cs | 3 +- .../SystemManagement/HBPO_SE_REPORT.cs | 3 +- .../SystemManagement/HBPO_SE_SA_REPORT.cs | 3 +- .../Entities/SystemManagement/INVOICE_GRP.cs | 3 +- .../Entities/SystemManagement/IN_SE_DETAIL.cs | 34 --------- .../SystemManagement/JIT_SE_DETAIL.cs | 35 --------- .../SystemManagement/JIT_SE_SA_REPORT.cs | 3 +- .../Entities/SystemManagement/PUB_CAN_SA.cs | 3 +- .../Entities/SystemManagement/TB_PRICE_BJ.cs | 2 +- .../Controllers/GenericController.cs | 2 +- 43 files changed, 687 insertions(+), 213 deletions(-) create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SE_REPORTController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_CAN_SAController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_CAN_SA_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_SE_DETAILController.cs rename docs/demo/src/WTA.Application/Identity/Controllers/{BJ_SE_DETAILController.cs => BOMController.cs} (59%) create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SE_REPORTController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_CAN_SAController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_CAN_SA_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_SE_DETAILController.cs delete mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/IN_SE_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_CAN_SAController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_CAN_SA_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_SE_DETAILController.cs delete mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/JIT_SE_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/PURCHASE_PRICEController.cs delete mode 100644 docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BJ_SE_DETAIL.cs rename docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/{ => Group}/CaiWuShenHeGroup.cs (100%) delete mode 100644 docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/IN_SE_DETAIL.cs delete mode 100644 docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/JIT_SE_DETAIL.cs diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SE_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SE_DETAILController.cs index b5981897..55f670cc 100644 --- a/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SE_DETAILController.cs +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SE_DETAILController.cs @@ -3,6 +3,7 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Shared.Attributes; using WTA.Shared.Controllers; using WTA.Shared.Data; @@ -15,9 +16,9 @@ public class BBAC_SE_DETAILController : GenericController + /// 未确定 + /// + /// + [HttpPost, Display(Name = "同步"), Multiple] + public IActionResult? Synchronous() + { + return null; + } } diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SE_REPORTController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SE_REPORTController.cs new file mode 100644 index 00000000..c74300de --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SE_REPORTController.cs @@ -0,0 +1,54 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Logging; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; +using WTA.Shared.Data; + +namespace WTA.Application.Identity.Controllers; + +public class BBAC_SE_REPORTController : GenericController +{ + public BBAC_SE_REPORTController(ILogger logger, IRepository repository) : base(logger, repository) + { + } + + [NonAction] + public override IActionResult Create([FromBody] BBAC_SE_REPORT model) + { + return base.Create(model); + } + + [NonAction] + public override IActionResult Delete([FromBody] Guid[] guids) + { + return base.Delete(guids); + } + + [NonAction] + public override IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return base.Export(model, includeAll, includeDeleted); + } + + [NonAction] + public override IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return base.Import(file, partial, replace); + } + + [NonAction] + public override IActionResult Update([FromBody] BBAC_SE_REPORT model) + { + return base.Update(model); + } + + [HttpPost, Display(Name = "生成比对"), Multiple] + public IActionResult? ExportEDIJob() + { + return null; + } +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_CAN_SAController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_CAN_SAController.cs new file mode 100644 index 00000000..1dee8766 --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_CAN_SAController.cs @@ -0,0 +1,60 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class BJ_PUB_CAN_SAController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public BJ_PUB_CAN_SAController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpGet, AllowAnonymous, Multiple, Order(-2), HtmlClass("el-button--primary")] + public virtual IActionResult Import() + { + return this._genericController.Import(); + } + + [Consumes("multipart/form-data")] + [HttpPost, Multiple, Order(-2), HtmlClass("el-button--primary")] + public virtual IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return this._genericController.Import(file, partial, replace); + } + + [HttpPost, Multiple, Order(0), HtmlClass("el-button--danger")] + public virtual IActionResult Delete([FromBody] Guid[] guids) + { + return this._genericController.Delete(guids); + } +} + +[Order(1)] +[BJDataInputGroup] +[Display(Name = "结算数据")] +public class BJ_PUB_CAN_SA : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_CAN_SA_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_CAN_SA_DETAILController.cs new file mode 100644 index 00000000..12cb3b57 --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_CAN_SA_DETAILController.cs @@ -0,0 +1,45 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class BJ_PUB_CAN_SA_DETAILController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public BJ_PUB_CAN_SA_DETAILController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(-1), HtmlClass("el-button--warning")] + public virtual IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return this._genericController.Export(model, includeAll, includeDeleted); + } +} + +[Hidden] +[Display(Name = "结算数据")] +[BJDataInputGroup] +public class BJ_PUB_CAN_SA_DETAIL : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_SE_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_SE_DETAILController.cs new file mode 100644 index 00000000..99bbe143 --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_SE_DETAILController.cs @@ -0,0 +1,46 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; +using RouteAttribute = Microsoft.AspNetCore.Mvc.RouteAttribute; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class BJ_PUB_SE_DETAILController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public BJ_PUB_SE_DETAILController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(-1), HtmlClass("el-button--warning")] + public virtual IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return this._genericController.Export(model, includeAll, includeDeleted); + } +} + +[Order(2)] +[BJDataInputGroup] +[Display(Name = "发运数据")] +public class BJ_PUB_SE_DETAIL : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BJ_SE_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BOMController.cs similarity index 59% rename from docs/demo/src/WTA.Application/Identity/Controllers/BJ_SE_DETAILController.cs rename to docs/demo/src/WTA.Application/Identity/Controllers/BOMController.cs index de404d21..62e1641b 100644 --- a/docs/demo/src/WTA.Application/Identity/Controllers/BJ_SE_DETAILController.cs +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BOMController.cs @@ -1,34 +1,36 @@ +using System; +using System.Collections.Generic; using System.ComponentModel.DataAnnotations; +using System.Linq; +using System.Text; +using System.Threading.Tasks; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Shared.Application; using WTA.Shared.Controllers; using WTA.Shared.Data; namespace WTA.Application.Identity.Controllers; - -public class BJ_SE_DETAILController : GenericController +public class BOMController : GenericController { - public BJ_SE_DETAILController(ILogger logger, IRepository repository) : base(logger, repository) + public BOMController(ILogger logger, IRepository repository) : base(logger, repository) { } - [NonAction] - public override IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + public override IActionResult Create([FromBody] BOM model) { - return base.Import(file); + return base.Create(model); } - [NonAction] public override IActionResult Delete([FromBody] Guid[] guids) { return base.Delete(guids); } - [NonAction] - public override IActionResult Create([FromBody] BJ_SE_DETAIL model) + public override IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) { - return base.Create(model); + return base.Import(file, partial, replace); } } diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SE_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SE_DETAILController.cs index d4751b25..0c7e8f1f 100644 --- a/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SE_DETAILController.cs +++ b/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SE_DETAILController.cs @@ -3,6 +3,7 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Shared.Attributes; using WTA.Shared.Controllers; using WTA.Shared.Data; @@ -31,4 +32,13 @@ public class HBPO_SE_DETAILController : GenericController + /// 未确定 + /// + /// + [HttpPost,Display(Name ="同步"),Multiple] + public IActionResult? Synchronous() + { + return null; + } } diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SE_REPORTController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SE_REPORTController.cs new file mode 100644 index 00000000..2d966e0e --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SE_REPORTController.cs @@ -0,0 +1,54 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Logging; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; +using WTA.Shared.Data; + +namespace WTA.Application.Identity.Controllers; + +public class HBPO_SE_REPORTController : GenericController +{ + public HBPO_SE_REPORTController(ILogger logger, IRepository repository) : base(logger, repository) + { + } + + [NonAction] + public override IActionResult Create([FromBody] HBPO_SE_REPORT model) + { + return base.Create(model); + } + + [NonAction] + public override IActionResult Delete([FromBody] Guid[] guids) + { + return base.Delete(guids); + } + + [NonAction] + public override IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return base.Export(model, includeAll, includeDeleted); + } + + [NonAction] + public override IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return base.Import(file, partial, replace); + } + + [NonAction] + public override IActionResult Update([FromBody] HBPO_SE_REPORT model) + { + return base.Update(model); + } + + [HttpPost, Display(Name = "生成比对"), Multiple] + public IActionResult? ExportEDIJob() + { + return null; + } +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_CAN_SAController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_CAN_SAController.cs new file mode 100644 index 00000000..a59224f2 --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_CAN_SAController.cs @@ -0,0 +1,60 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class IN_PUB_CAN_SAController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public IN_PUB_CAN_SAController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpGet, AllowAnonymous, Multiple, Order(-2), HtmlClass("el-button--primary")] + public virtual IActionResult Import() + { + return this._genericController.Import(); + } + + [Consumes("multipart/form-data")] + [HttpPost, Multiple, Order(-2), HtmlClass("el-button--primary")] + public virtual IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return this._genericController.Import(file, partial, replace); + } + + [HttpPost, Multiple, Order(0), HtmlClass("el-button--danger")] + public virtual IActionResult Delete([FromBody] Guid[] guids) + { + return this._genericController.Delete(guids); + } +} + +[Order(1)] +[INDataInputGroup] +[Display(Name = "结算数据")] +public class IN_PUB_CAN_SA : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_CAN_SA_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_CAN_SA_DETAILController.cs new file mode 100644 index 00000000..5c9284d4 --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_CAN_SA_DETAILController.cs @@ -0,0 +1,45 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class IN_PUB_CAN_SA_DETAILController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public IN_PUB_CAN_SA_DETAILController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(-1), HtmlClass("el-button--warning")] + public virtual IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return this._genericController.Export(model, includeAll, includeDeleted); + } +} +[Hidden] +[Display(Name = "结算数据")] +[INDataInputGroup] +[Order(1)] +public class IN_PUB_CAN_SA_DETAIL : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_SE_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_SE_DETAILController.cs new file mode 100644 index 00000000..70332d5b --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_SE_DETAILController.cs @@ -0,0 +1,53 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using DocumentFormat.OpenXml.Wordprocessing; +using Microsoft.AspNetCore.Components; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; +using RouteAttribute = Microsoft.AspNetCore.Mvc.RouteAttribute; + +namespace WTA.Application.Identity.Controllers; +[Route("api/{culture=zh}/[controller]/[action]")] +public class IN_PUB_SE_DETAILController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public IN_PUB_SE_DETAILController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(-1), HtmlClass("el-button--warning")] + public virtual IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return this._genericController.Export(model, includeAll, includeDeleted); + } +} +[Order(2)] +[INDataInputGroup] +[Display(Name = "发运数据")] +public class IN_PUB_SE_DETAIL : IResource +{ + +} + diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/IN_SE_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/IN_SE_DETAILController.cs deleted file mode 100644 index ea07ce67..00000000 --- a/docs/demo/src/WTA.Application/Identity/Controllers/IN_SE_DETAILController.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.ComponentModel.DataAnnotations; -using Microsoft.AspNetCore.Http; -using Microsoft.AspNetCore.Mvc; -using Microsoft.Extensions.Logging; -using WTA.Application.Identity.Entities.SystemManagement; -using WTA.Shared.Controllers; -using WTA.Shared.Data; - -namespace WTA.Application.Identity.Controllers; - -public class IN_SE_DETAILController : GenericController -{ - public IN_SE_DETAILController(ILogger logger, IRepository repository) : base(logger, repository) - { - } - - [NonAction] - public override IActionResult Import([Required] IFormFile importexcelfile, bool partial = false, bool replace = false) - { - return base.Import(importexcelfile); - } - - [NonAction] - public override IActionResult Delete([FromBody] Guid[] guids) - { - return base.Delete(guids); - } - - [NonAction] - public override IActionResult Create([FromBody] IN_SE_DETAIL model) - { - return base.Create(model); - } -} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_CAN_SAController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_CAN_SAController.cs new file mode 100644 index 00000000..fc41502f --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_CAN_SAController.cs @@ -0,0 +1,72 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class JIT_PUB_CAN_SAController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public JIT_PUB_CAN_SAController(GenericController genericController) + { + this._genericController = genericController; + } + + //[NonAction] + //public override IActionResult Create([FromBody] PUB_CAN_SA model) + //{ + // return base.Create(model); + //} + + //[NonAction] + //public override IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + //{ + // return base.Export(model, includeAll, includeDeleted); + //} + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpGet, AllowAnonymous, Multiple, Order(-2), HtmlClass("el-button--primary")] + public virtual IActionResult Import() + { + return this._genericController.Import(); + } + + [Consumes("multipart/form-data")] + [HttpPost, Multiple, Order(-2), HtmlClass("el-button--primary")] + public virtual IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return this._genericController.Import(file, partial, replace); + } + + [HttpPost, Multiple, Order(0), HtmlClass("el-button--danger")] + public virtual IActionResult Delete([FromBody] Guid[] guids) + { + return this._genericController.Delete(guids); + } +} + +[Display(Name = "结算数据")] +[JITDataInputGroup] +[Order(1)] +public class JIT_PUB_CAN_SA : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_CAN_SA_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_CAN_SA_DETAILController.cs new file mode 100644 index 00000000..83a43d5c --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_CAN_SA_DETAILController.cs @@ -0,0 +1,45 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class JIT_PUB_CAN_SA_DETAILController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public JIT_PUB_CAN_SA_DETAILController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(-1), HtmlClass("el-button--warning")] + public virtual IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return this._genericController.Export(model, includeAll, includeDeleted); + } +} + +[Hidden] +[Display(Name = "结算数据")] +[JITDataInputGroup] +public class JIT_PUB_CAN_SA_DETAIL : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_SE_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_SE_DETAILController.cs new file mode 100644 index 00000000..66c11d11 --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_SE_DETAILController.cs @@ -0,0 +1,46 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; +using RouteAttribute = Microsoft.AspNetCore.Mvc.RouteAttribute; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class JIT_PUB_SE_DETAILController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public JIT_PUB_SE_DETAILController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(-1), HtmlClass("el-button--warning")] + public virtual IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return this._genericController.Export(model, includeAll, includeDeleted); + } +} + +[Order(2)] +[JITDataInputGroup] +[Display(Name = "发运数据")] +public class JIT_PUB_SE_DETAIL : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/JIT_SE_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_SE_DETAILController.cs deleted file mode 100644 index 5eeae3d5..00000000 --- a/docs/demo/src/WTA.Application/Identity/Controllers/JIT_SE_DETAILController.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.ComponentModel.DataAnnotations; -using Microsoft.AspNetCore.Http; -using Microsoft.AspNetCore.Mvc; -using Microsoft.Extensions.Logging; -using WTA.Application.Identity.Entities.SystemManagement; -using WTA.Shared.Controllers; -using WTA.Shared.Data; - -namespace WTA.Application.Identity.Controllers; - -public class JIT_SE_DETAILController : GenericController -{ - public JIT_SE_DETAILController(ILogger logger, IRepository repository) : base(logger, repository) - { - } - - [NonAction] - public override IActionResult Import([Required] IFormFile importexcelfile, bool partial = false, bool replace = false) - { - return base.Import(importexcelfile); - } - - [NonAction] - public override IActionResult Delete([FromBody] Guid[] guids) - { - return base.Delete(guids); - } - - [NonAction] - public override IActionResult Create([FromBody] JIT_SE_DETAIL model) - { - return base.Create(model); - } -} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/PURCHASE_PRICEController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/PURCHASE_PRICEController.cs new file mode 100644 index 00000000..0dbe67e9 --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/PURCHASE_PRICEController.cs @@ -0,0 +1,20 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Logging; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Shared.Controllers; +using WTA.Shared.Data; + +namespace WTA.Application.Identity.Controllers; + +public class PURCHASE_PRICEController : GenericController +{ + public PURCHASE_PRICEController(ILogger logger, IRepository repository) : base(logger, repository) + { + } + + [NonAction] + public override IActionResult Create([FromBody] PURCHASE_PRICE model) + { + return base.Create(model); + } +} diff --git a/docs/demo/src/WTA.Application/Identity/Data/Config/BaseDataDbConfig.cs b/docs/demo/src/WTA.Application/Identity/Data/Config/BaseDataDbConfig.cs index 368eb7c5..eded0d34 100644 --- a/docs/demo/src/WTA.Application/Identity/Data/Config/BaseDataDbConfig.cs +++ b/docs/demo/src/WTA.Application/Identity/Data/Config/BaseDataDbConfig.cs @@ -24,16 +24,16 @@ IEntityTypeConfiguration, //IEntityTypeConfiguration, //IEntityTypeConfiguration, //IEntityTypeConfiguration, -IEntityTypeConfiguration, +//IEntityTypeConfiguration, //IEntityTypeConfiguration, //IEntityTypeConfiguration, //IEntityTypeConfiguration, -IEntityTypeConfiguration, +//IEntityTypeConfiguration, //IEntityTypeConfiguration, //IEntityTypeConfiguration, //IEntityTypeConfiguration, //IEntityTypeConfiguration, -IEntityTypeConfiguration, +//IEntityTypeConfiguration, //IEntityTypeConfiguration, //IEntityTypeConfiguration, //IEntityTypeConfiguration, @@ -160,8 +160,8 @@ IEntityTypeConfiguration //public void Configure(EntityTypeBuilder builder) //{ } - public void Configure(EntityTypeBuilder builder) - { } + //public void Configure(EntityTypeBuilder builder) + //{ } //public void Configure(EntityTypeBuilder builder) //{ } @@ -172,8 +172,8 @@ IEntityTypeConfiguration //public void Configure(EntityTypeBuilder builder) //{ } - public void Configure(EntityTypeBuilder builder) - { } + //public void Configure(EntityTypeBuilder builder) + //{ } //public void Configure(EntityTypeBuilder builder) //{ } @@ -187,8 +187,8 @@ IEntityTypeConfiguration //public void Configure(EntityTypeBuilder builder) //{ } - public void Configure(EntityTypeBuilder builder) - { } + //public void Configure(EntityTypeBuilder builder) + //{ } //public void Configure(EntityTypeBuilder builder) //{ } diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_CAN_SA.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_CAN_SA.cs index eb7c5e3e..6985bc27 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_CAN_SA.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_CAN_SA.cs @@ -5,7 +5,8 @@ using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; [JISBBACSettlementInvoicingGroup] -[Display(Name = "BBAC可结算导入")] +[Display(Name = "发票分组号")] +//BBAC可结算导入 public class BBAC_CAN_SA : BaseEntity { [Display(Name = "期间")] diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_NOT_SA_DETAIL.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_NOT_SA_DETAIL.cs index 1f88e4ab..04c9a3d4 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_NOT_SA_DETAIL.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_NOT_SA_DETAIL.cs @@ -31,7 +31,8 @@ namespace WTA.Application.Identity.Entities.SystemManagement; // public string RecordCount { get; set; } = null!; //} [JISBBACSettlementInvoicingGroup] -[Display(Name = "BBAC不可结算导入明细")] +[Display(Name = "不可结明细")] +//BBAC不可结算导入明细 public class BBAC_NOT_SA_DETAIL : BaseEntity { /// diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_PD_DETAIL.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_PD_DETAIL.cs index 6c631cce..399d063b 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_PD_DETAIL.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_PD_DETAIL.cs @@ -4,7 +4,8 @@ using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; [JISBBACSettlementInvoicingGroup] -[Display(Name = "BBAC待扣减实体")] +[Display(Name = "寄售库库存扣减审批")] +//BBAC寄售库库存扣减审批 public class BBAC_PD_DETAIL : BaseEntity { [Display(Name = "LU+ASN单号")] diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SA.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SA.cs index d2604ada..0ea044d6 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SA.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SA.cs @@ -7,7 +7,8 @@ namespace WTA.Application.Identity.Entities.SystemManagement; [Order(2)] [JISBBACDataInputGroup] -[Display(Name = "BBAC结算导入")] +[Display(Name = "JIS结算数据")] +//BBAC结算导入 public class BBAC_SA : BaseEntity { [Display(Name = "期间")] diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SE_DETAIL.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SE_DETAIL.cs index ea3a68f0..4d2a8004 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SE_DETAIL.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SE_DETAIL.cs @@ -7,7 +7,8 @@ namespace WTA.Application.Identity.Entities.SystemManagement; [Order(4)] [JISBBACDataInputGroup] -[Display(Name = "BBAC发运单")] +[Display(Name = "JIS发运数据")] +//BBAC发运单 public class BBAC_SE_DETAIL : BaseEntity { [Display(Name = "LU+生产码")] diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SE_EDI.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SE_EDI.cs index ae51bfce..027e33b0 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SE_EDI.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SE_EDI.cs @@ -1,10 +1,13 @@ using System.ComponentModel.DataAnnotations; using WTA.Application.Identity.Entities.SystemManagement.Attribute; +using WTA.Shared.Attributes; using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; [JISBBACDataInputGroup] -[Display(Name = "BBAC的EDI数据")] +[Order(3)] +[Display(Name = "EDI数据")] +//BBAC的EDI数据 public class BBAC_SE_EDI : BaseEntity { [Display(Name = "LU+生产码")] diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SE_REPORT.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SE_REPORT.cs index 11543f38..b6299738 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SE_REPORT.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SE_REPORT.cs @@ -1,9 +1,12 @@ using System.ComponentModel.DataAnnotations; using WTA.Application.Identity.Entities.SystemManagement.Attribute; +using WTA.Shared.Attributes; using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; -[Display(Name = "BBAC发运数据和EDI对比实体")] +[Order(1)] +[Display(Name = "EDI与发运数据比对")] +//BBAC发运数据和EDI对比实体 [JISBBACDataComparisonGroup] public class BBAC_SE_REPORT : BaseEntity { diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SE_SA_REPORT.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SE_SA_REPORT.cs index d986e3f1..96746d9d 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SE_SA_REPORT.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_SE_SA_REPORT.cs @@ -1,13 +1,13 @@ using System.ComponentModel.DataAnnotations; using WTA.Application.Identity.Entities.SystemManagement.Attribute; +using WTA.Shared.Attributes; using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; -[JISBBACDataComparisonGroup] +[Hidden] [Display(Name = "BBAC发运数据与结算数据对比实体")] public class BBAC_SE_SA_REPORT : BaseEntity { - [Display(Name = "LU+ASN单号")] public string KeyCode { get; set; } = null!; /// diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BJ_SE_DETAIL.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BJ_SE_DETAIL.cs deleted file mode 100644 index 192ac34e..00000000 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BJ_SE_DETAIL.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System.ComponentModel.DataAnnotations; -using WTA.Application.Identity.Entities.SystemManagement.Group; -using WTA.Shared.Domain; - -namespace WTA.Application.Identity.Entities.SystemManagement; -[BJDataInputGroup] -[Display(Name = "备件发运数据查询")] -public class BJ_SE_DETAIL : BaseEntity -{ - [Display(Name = "LU+生产码")] - public string KeyCode { get; set; } = null!; - - [Display(Name = "期间")] - public string Version { get; set; } = null!; - - [Display(Name = "零件号")] - public string LU { get; set; } = null!; - - [Display(Name = ("ASN单号"))] - public string PN { get; set; } = null!; - - [Display(Name = ("发货数量"))] - public decimal Qty { get; set; } - - [Display(Name = ("订单时间"))] - public DateTime BeginDate { get; set; } - - [Display(Name = ("发货时间"))] - public DateTime ShippingDate { get; set; } - - [Display(Name = ("Wms发货单号"))] - public string WmsBillNum { get; set; } = null!; -} diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/CaiWuShenHeGroup.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/Group/CaiWuShenHeGroup.cs similarity index 100% rename from docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/CaiWuShenHeGroup.cs rename to docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/Group/CaiWuShenHeGroup.cs diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_CAN_SA.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_CAN_SA.cs index 0e6820b9..47617309 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_CAN_SA.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_CAN_SA.cs @@ -5,7 +5,8 @@ using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; [JISHBPOSettlementInvoicingGroup] -[Display(Name = "HBPO可结算导入")] +[Display(Name = "可结算单")] +//HBPO可结算导入 public class HBPO_CAN_SA : BaseEntity { [Display(Name = "期间")] diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_NOT_SA_DETAIL.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_NOT_SA_DETAIL.cs index a964c085..98177610 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_NOT_SA_DETAIL.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_NOT_SA_DETAIL.cs @@ -30,7 +30,8 @@ namespace WTA.Application.Identity.Entities.SystemManagement; // public string RecordCount { get; set; } = null!; //} [JISHBPOSettlementInvoicingGroup] -[Display(Name = "HBPO不可结算导入明细")] +[Display(Name = "不可结算单")] +//HBPO不可结算导入明细 public class HBPO_NOT_SA_DETAIL : BaseEntity { /// diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_PD_DETAIL.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_PD_DETAIL.cs index 1cdabdc7..19ec6270 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_PD_DETAIL.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_PD_DETAIL.cs @@ -4,7 +4,8 @@ using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; [JISHBPOSettlementInvoicingGroup] -[Display(Name = "HBPO待扣减实体")] +[Display(Name = "寄售库库存扣减审批")] +//HBPO待扣减实体 public class HBPO_PD_DETAIL : BaseEntity { [Display(Name = "LU+ASN单号")] diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SA.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SA.cs index 72667cf7..7fa6e32d 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SA.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SA.cs @@ -5,7 +5,8 @@ using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; [JISHBPODataInputGroup] -[Display(Name = "HBPO结算导入")] +[Display(Name = "JIS结算数据")] +//HBPO结算导入 public class HBPO_SA : BaseEntity { [Display(Name = "期间")] diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_DETAIL.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_DETAIL.cs index 9c3db4c4..55c5bf25 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_DETAIL.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_DETAIL.cs @@ -4,7 +4,8 @@ using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; -[Display(Name = "HBPO发运数据")] +[Display(Name = "JIS发运数据")] +//HBPO发运数据 [JISHBPODataInputGroup] public class HBPO_SE_DETAIL : BaseEntity { diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_EDI.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_EDI.cs index 2d7143c6..7617b0e8 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_EDI.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_EDI.cs @@ -4,7 +4,8 @@ using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; [JISHBPODataInputGroup] -[Display(Name = "HBPO的EDI数据")] +[Display(Name = "EDI数据")] +//HBPO的EDI数据 public class HBPO_SE_EDI : BaseEntity { [Display(Name = "LU+生产码")] diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_REPORT.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_REPORT.cs index 6f35e706..c6ad50e8 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_REPORT.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_REPORT.cs @@ -3,8 +3,9 @@ using WTA.Application.Identity.Entities.SystemManagement.Group; using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; -[Display(Name = "HBPO发运数据和EDI对比实体")] +[Display(Name = "EDI与发运数据比对")] [JISHBPODataComparisonGroup] +//HBPO发运数据和EDI对比实体 public class HBPO_SE_REPORT : BaseEntity { [Display(Name = "LU+生产码")] diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_SA_REPORT.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_SA_REPORT.cs index 91066058..d2586b15 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_SA_REPORT.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_SA_REPORT.cs @@ -1,10 +1,11 @@ using System.ComponentModel.DataAnnotations; using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Attributes; using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; [Display(Name = "HBPO发运数据与结算数据对比实体")] -[JISHBPODataComparisonGroup] +[Hidden] public class HBPO_SE_SA_REPORT : BaseEntity { [Display(Name = "LU+ASN单号")] diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/INVOICE_GRP.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/INVOICE_GRP.cs index faac7b91..f07d0c02 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/INVOICE_GRP.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/INVOICE_GRP.cs @@ -5,7 +5,8 @@ using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; [ShangWuShenHeGroup] -[Display(Name = "发票分组")] +[Display(Name = "财务管理审核")] +//发票分组 public class INVOICE_GRP : BaseEntity { [Display(Name = "实际纸质发票号")] diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/IN_SE_DETAIL.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/IN_SE_DETAIL.cs deleted file mode 100644 index a413d1ab..00000000 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/IN_SE_DETAIL.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.ComponentModel.DataAnnotations; -using WTA.Application.Identity.Entities.SystemManagement.Group; -using WTA.Shared.Domain; - -namespace WTA.Application.Identity.Entities.SystemManagement; - -[INDataInputGroup] -[Display(Name = "印度件发运数据查询")] -public class IN_SE_DETAIL : BaseEntity -{ - [Display(Name = "LU+生产码")] - public string KeyCode { get; set; } = null!; - - [Display(Name = "期间")] - public string Version { get; set; } = null!; - - [Display(Name = "零件号")] - public string LU { get; set; } = null!; - - [Display(Name = "交付识别号")] - public string PN { get; set; } = null!; - - [Display(Name = "发货数量")] - public decimal Qty { get; set; } - - [Display(Name = "开始时间")] - public DateTime BeginDate { get; set; } - - [Display(Name = "发货时间")] - public DateTime ShippingDate { get; set; } - - [Display(Name = "WMS发货单号")] - public string WmsBillNum { get; set; } = null!; -} diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/JIT_SE_DETAIL.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/JIT_SE_DETAIL.cs deleted file mode 100644 index b6e3f79c..00000000 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/JIT_SE_DETAIL.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System.ComponentModel.DataAnnotations; -using WTA.Application.Identity.Entities.SystemManagement.Group; -using WTA.Shared.Attributes; -using WTA.Shared.Domain; - -namespace WTA.Application.Identity.Entities.SystemManagement; -[JITDataInputGroup] -[Display(Name = "JIT发运数据查询")] -public class JIT_SE_DETAIL : BaseEntity -{ - [Display(Name = "LU+生产码")] - public string KeyCode { get; set; } = null!; - - [Display(Name = "期间")] - public string Version { get; set; } = null!; - - [Display(Name = "零件号")] - public string LU { get; set; } = null!; - - [Display(Name = ("ASN单号"))] - public string PN { get; set; } = null!; - - [Display(Name = ("发货数量"))] - public decimal Qty { get; set; } - - [Display(Name = ("订单时间"))] - public DateTime BeginDate { get; set; } - - [Display(Name = ("发货时间"))] - public DateTime ShippingDate { get; set; } - - [Display(Name = ("Wms发货单号"))] - public string WmsBillNum { get; set; } = null!; - -} diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/JIT_SE_SA_REPORT.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/JIT_SE_SA_REPORT.cs index 96186b5f..b040cc03 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/JIT_SE_SA_REPORT.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/JIT_SE_SA_REPORT.cs @@ -1,9 +1,10 @@ using System.ComponentModel.DataAnnotations; using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Attributes; using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; -[JITDataComparisonGroup] +[Hidden] [Display(Name = "JIT发运数据与结算数据对比实体")] public class JIT_SE_SA_REPORT : BaseEntity { diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/PUB_CAN_SA.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/PUB_CAN_SA.cs index a920b53a..8910a9c5 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/PUB_CAN_SA.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/PUB_CAN_SA.cs @@ -32,8 +32,9 @@ public class PUB_CAN_SA : BaseEntity [Display(Name = "明细记录行数")] public string InvGroupNum { get; set; } = null!; } -[Display(Name = "PUB可结算导入明细")] [Hidden] +[Display(Name = "PUB可结算导入明细")] + public class PUB_CAN_SA_DETAIL : BaseEntity { [Display(Name = "LU+ASN单号")] diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/TB_PRICE_BJ.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/TB_PRICE_BJ.cs index 59c3d37e..9ccfda06 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/TB_PRICE_BJ.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/TB_PRICE_BJ.cs @@ -5,7 +5,7 @@ using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; [Order(11)] -[Display(Name = "备件价格表")] +[Display(Name = "备件价格单")] [SystemManagement] public class TB_PRICE_BJ : BaseEntity { diff --git a/docs/demo/src/WTA.Shared/Controllers/GenericController.cs b/docs/demo/src/WTA.Shared/Controllers/GenericController.cs index cea4d81c..5025bbca 100644 --- a/docs/demo/src/WTA.Shared/Controllers/GenericController.cs +++ b/docs/demo/src/WTA.Shared/Controllers/GenericController.cs @@ -99,7 +99,7 @@ public class GenericController model) { return Json(new { From 5a5d0272e8b2321324f14de018accf966f528e05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A6=20=E8=B5=B5?= <89237069@qq.com> Date: Mon, 10 Jul 2023 09:19:05 +0800 Subject: [PATCH 03/14] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SettleAccount.Domain/Bases/EntityBase.cs | 265 ++++++++++- .../Entities/BQ/BBAC_CAN_SA.cs | 138 ++++++ .../Entities/BQ/BBAC_NOT_SA_DETAIL.cs | 103 ++++ .../Entities/BQ/BBAC_PD_DETAIL.cs | 66 +++ .../Entities/BQ/BBAC_SA.cs | 131 ++++++ .../Entities/BQ/BBAC_SE_DETAIL.cs | 60 +++ .../Entities/BQ/BBAC_SE_EDI.cs | 51 ++ .../Entities/BQ/BBAC_SE_REPORT.cs | 60 +++ .../Entities/BQ/BBAC_SE_SA_REPORT.cs | 78 +++ .../Entities/BQ/HBPO_CAN_SA.cs | 122 +++++ .../Entities/BQ/HBPO_NOT_SA_DETAIL.cs | 111 +++++ .../Entities/BQ/HBPO_PD_DETAIL.cs | 64 +++ .../Entities/BQ/HBPO_SA.cs | 124 +++++ .../Entities/BQ/HBPO_SE_DETAIL.cs | 59 +++ .../Entities/BQ/HBPO_SE_EDI.cs | 51 ++ .../Entities/BQ/HBPO_SE_REPORT.cs | 60 +++ .../Entities/BQ/HBPO_SE_SA_REPORT.cs | 101 ++++ .../Entities/BQ/INVOICE_GRP.cs | 102 ++++ .../Entities/BQ/INVOICE_MAP_GROUP.cs | 33 ++ .../Entities/BQ/INVOICE_NOT_SETTLE.cs | 42 ++ .../Entities/BQ/INVOICE_WAIT_DETAIL.cs | 64 +++ .../Entities/BQ/JIT_SE_SA_REPORT.cs | 103 ++++ .../Entities/BQ/M_PD_DETAIL.cs | 49 ++ .../Entities/BQ/Material.cs | 445 ++++++++++++++++++ .../Entities/BQ/MaterialRelationship.cs | 11 + .../Entities/BQ/PUB_CAN_SA.cs | 131 ++++++ .../Entities/BQ/PUB_NOT_SA_DETAIL.cs | 92 ++++ .../Entities/BQ/PUB_PD_DETAIL.cs | 73 +++ .../Entities/BQ/PUB_SA.cs | 120 +++++ .../Entities/BQ/PUB_SE_DETAIL.cs | 66 +++ .../Entities/BQ/PURCHASE_PRICE.cs | 11 + .../Entities/BQ/TB_PRICE_BJ.cs | 36 ++ .../Entities/BQ/TB_PRICE_LIST.cs | 52 ++ .../Entities/BQ/TB_RePartsRelationship.cs | 35 ++ .../ISettleAccountBranchEfCoreRepository.cs | 2 +- .../SettleAccount.Domain.csproj | 2 +- 36 files changed, 3104 insertions(+), 9 deletions(-) create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_CAN_SA.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_NOT_SA_DETAIL.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_PD_DETAIL.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SA.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_DETAIL.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_EDI.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_REPORT.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_SA_REPORT.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_CAN_SA.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_NOT_SA_DETAIL.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_PD_DETAIL.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SA.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_DETAIL.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_EDI.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_REPORT.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_SA_REPORT.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_GRP.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_MAP_GROUP.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_NOT_SETTLE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_WAIT_DETAIL.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/JIT_SE_SA_REPORT.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/M_PD_DETAIL.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/Material.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/MaterialRelationship.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_CAN_SA.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_NOT_SA_DETAIL.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_PD_DETAIL.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SA.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SE_DETAIL.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PURCHASE_PRICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_PRICE_BJ.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_PRICE_LIST.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_RePartsRelationship.cs diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Bases/EntityBase.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Bases/EntityBase.cs index a9222561..23b56038 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Bases/EntityBase.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Bases/EntityBase.cs @@ -4,6 +4,7 @@ using System.Linq; using System.Security.Policy; using System.Text; using System.Threading.Tasks; +using Volo.Abp.Domain.Entities.Auditing; using Win.Sfs.SettleAccount.Entities.SettleAccountDomain; using static System.Runtime.CompilerServices.RuntimeHelpers; @@ -29,7 +30,7 @@ namespace SettleAccount.Bases /// /// 发货数量、结算数量、扣减数量 /// - public string Qty { set; get; } + public decimal Qty { set; get; } } public interface ISA_BASE : ISBASE @@ -49,7 +50,13 @@ namespace SettleAccount.Bases /// /// 结算日期 /// - public string SettleDate { set; get; } + public DateTime SettleDate { set; get; } + + /// + /// 结算分组号 + /// + public string GroupNum { set; get; } + } @@ -70,11 +77,13 @@ namespace SettleAccount.Bases /// /// 结算日期 /// - public string SettleDate { set; get; } + public DateTime SettleDate { set; get; } + + public string InvGroupNum { set; get; } /// /// 结算分组号 /// - public string InvGroupNum { set; get; } + public string GroupNum { set; get; } } public interface ISA_NOT_BASE : ISBASE @@ -99,6 +108,10 @@ namespace SettleAccount.Bases /// 结算分组号 /// public string InvGroupNum { set; get; } + /// + /// 结算分组号 + /// + public string GroupNum { set; get; } } @@ -113,9 +126,39 @@ namespace SettleAccount.Bases public string WmsBillNum { set; get; } + } - + public class RE_BASE : IRE_BASE + { + /// 发货时间 + /// + public DateTime ShippingDate { set; get; } + /// + /// 发运单号 + /// + public string WmsBillNum { set; get; } + /// + /// 扣減數據量 + /// + public decimal Qty { set; get; } + /// + /// 零件號 + /// + public string LU { get; set ; } + /// + /// 發貨單號、 + /// + public string PN { get; set ; } + /// + /// + /// + public string KeyCode { get; set ; } } + + + + + public interface ISE_BASE : ISBASE { /// @@ -134,12 +177,29 @@ namespace SettleAccount.Bases } public interface IPD_BASE : ISBASE { - public string Version { set; get; } + /// + /// 期間 + /// + public int Version { set; get; } + /// + /// 結算單號 + /// public string BillNum { set; get; } - public string Qty { set; get; } + /// + /// 單價 + /// public string Price { set; get; } + /// + /// 發票分組號 + /// public string InvGroupNum { set; get; } + /// + /// 結算日期 + /// public string SettleDate { set; get; } + /// + /// 結算分組號 + /// public string GroupNum { set; get; } } @@ -163,6 +223,197 @@ namespace SettleAccount.Bases } + public class SA_BASE : FullAuditedAggregateRoot, ISA_BASE + { + /// + /// 期间 + /// + public int Version { set; get; } + /// + /// 单价 + /// + public decimal Price { set; get; } + /// + /// 结算单 + /// + public string BillNum { set; get; } + /// + /// 结算日期 + /// + public DateTime SettleDate { set; get; } + /// + /// 零件號 + /// + public string LU { get ; set ; } + /// + /// 生產號 + /// + public string PN { get; set ; } + /// + /// 組合鍵值(LU+PN) + /// + public string KeyCode { get ; set ; } + /// + /// 數量 + /// + public decimal Qty { get ; set ; } + /// + /// 結算分組號 + /// + public string GroupNum { get ; set ; } + } + + public class SA_CAN_BASE : FullAuditedAggregateRoot, ISA_CAN_BASE + { + /// + /// 期间 + /// + public int Version { set; get; } + /// + /// 单价 + /// + public decimal Price { set; get; } + /// + /// 可出库结算单 + /// + public string BillNum { set; get; } + /// + /// 结算日期 + /// + public DateTime SettleDate { set; get; } + /// + /// 發票分組號 + /// + public string InvGroupNum { set; get; } + /// + /// 零件號 + /// + public string LU { get; set; } + /// + /// 生產號 + /// + public string PN { get; set; } + /// + /// 組合鍵值(LU+PN) + /// + public string KeyCode { get; set; } + /// + /// 數量 + /// + public decimal Qty { get; set; } + /// + /// 結算分組號 + /// + public string GroupNum { get; set; } + } + public class SA_NOT_BASE : FullAuditedAggregateRoot, ISA_NOT_BASE + { + /// + /// 单价 + /// + public decimal Price { set; get; } + /// + /// 期间 + /// + public int Version { set; get; } + /// + /// 原结算单号 + /// + public string SettleBillNum { set; get; } + /// + /// 结算日期 + /// + public DateTime SettleDate { set; get; } + /// + /// 發票分组号 + /// + public string InvGroupNum { set; get; } + /// + /// 零件號 + /// + public string LU { get; set; } + /// + /// 生產號 + /// + public string PN { get; set; } + /// + /// 組合鍵值(LU+PN) + /// + public string KeyCode { get; set; } + /// + /// 數量 + /// + public decimal Qty { get; set; } + /// + /// 結算分組號 + /// + public string GroupNum { get; set; } + } + + + public class SE_BASE : FullAuditedAggregateRoot, ISE_BASE + { + /// + /// 期间 + /// + public int Version { set; get; } + /// + /// 发货时间 + /// + public DateTime ShippingDate { set; get; } + /// + /// 发运单号 + /// + public string WmsBillNum { set; get; } + + + + + /// + /// 零件號 + /// + public string LU { get; set; } + /// + /// 生產號 + /// + public string PN { get; set; } + /// + /// 組合鍵值(LU+PN) + /// + public string KeyCode { get; set; } + /// + /// 數量 + /// + public decimal Qty { get; set; } + + + + + + + + + } + public class PD_BASE : FullAuditedAggregateRoot, ISBASE + { + + public int Version { set; get; } + public string BillNum { set; get; } + public decimal Qty { set; get; } + public decimal Price { set; get; } + public string InvGroupNum { set; get; } + public DateTime SettleDate { set; get; } + public string GroupNum { set; get; } + public string LU { get ; set; } + public string PN { get ; set; } + + public string RELU { get; set; } + public string REPN { get; set; } + public string KeyCode { get; set; } + + + } + diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_CAN_SA.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_CAN_SA.cs new file mode 100644 index 00000000..709f6660 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_CAN_SA.cs @@ -0,0 +1,138 @@ +using SettleAccount.Bases; +using System; +using System.ComponentModel.DataAnnotations; +using Volo.Abp.Domain.Entities.Auditing; + +namespace SettleAccount.Domain.BQ; +[Display(Name = "BBAC可结算导入")] +public class BBAC_CAN_SA:FullAuditedAggregateRoot +{ + [Display(Name = "期间")] + public int Version { get; set; } + + [Display(Name = "结算单据")] + public string BillNum { get; set; } = null!; + [Display(Name = "关联结算单号")] + public string SettleBillNum { get; set; } = null!; + + /// + /// 1、新建 2、已有出库3、已有扣减寄售库 + /// + [Display(Name = "状态")] + public string State { get; set; } = null!; + + /// + /// 明细记录行数 + /// + [Display(Name = "明细记录行数")] + public string InvGroupNum { get; set; } = null!; + + public BBAC_CAN_SA(Guid guid, int version, string billNum, string settleBillNum, string state, string invGroupNum) + { + Id = guid; + Version = version; + BillNum = billNum; + SettleBillNum = settleBillNum; + State = state; + InvGroupNum = invGroupNum; + } +} + +[Display(Name = "BBAC可结算导入明细")] +public class BBAC_CAN_SA_DETAIL: SA_CAN_BASE +{ + ///// + ///// 对应字段(Material+ExternalCalNumber) + ///// + //[Display(Name = "LU+生产码")] + //public string KeyCode { get; set; } = null!; + + ///// + ///// 期间 + ///// + //[Display(Name = "期间")] + //public int Version { get; set; } + + ///// + ///// 结算单号 + ///// + //[Display(Name = "结算单号")] + //public string BillNum { get; set; } = null!; + [Display(Name = "关联结算单号")] + public string SettleBillNum { get; set; } = null!; + ///// + ///// 对应字段Material + ///// + //[Display(Name = "零件号")] + //public string LU { get; set; } = null!; + + ///// + ///// 对应字段ExternalCalNumber + ///// + //[Display(Name = "生产码")] + //public string PN { get; set; } = null!; + + /// + /// 选择工厂导入 + /// + [Display(Name = "工厂地点")] + public string Site { get; set; } = null!; + + /// + /// 对应字段Quantity + /// + //[Display(Name = "结算数量")] + //public decimal Qty { get; set; } + + /// + /// 匹配价格表对应区间对应地点带出 + /// + //[Display(Name = "单价")] + //public decimal Price { get; set; } + + /// + /// ExternalCallNumber包含(R0)为买单件 1为JIS 2.为买单件 + /// + [Display(Name = "业务类别")] + public string Category { get; set; } = null!; + + /// + /// 对应字段MovementType,996正常,997为退货 + /// + [Display(Name = "是否退货")] + public string IsReturn { get; set; } = null!; + + /// + /// 对应字段PostingDate + /// + //[Display(Name = "结算日期(收货日期)")] + //public DateTime SettleDate { get; set; } + + /// + /// 对应字段Reference + /// + //[Display(Name = "结算分组")] + //public string GroupNum { get; set; } = null!; + + //[Display(Name = "发票分组号")] + //public string InvGroupNum { get; set; } = null!; + + public BBAC_CAN_SA_DETAIL(Guid guid,string keyCode, int version, string billNum, string settleBillNum, string lU, string pN, string site, decimal qty, decimal price, string category, string isReturn, DateTime settleDate, string groupNum, string invGroupNum) + { + Id = guid; + KeyCode = keyCode; + Version = version; + BillNum = billNum; + SettleBillNum = settleBillNum; + LU = lU; + PN = pN; + Site = site; + Qty = qty; + Price = price; + Category = category; + IsReturn = isReturn; + SettleDate = settleDate; + GroupNum = groupNum; + InvGroupNum = invGroupNum; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_NOT_SA_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_NOT_SA_DETAIL.cs new file mode 100644 index 00000000..76e29484 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_NOT_SA_DETAIL.cs @@ -0,0 +1,103 @@ +using SettleAccount.Bases; +using System; +using System.ComponentModel.DataAnnotations; + + +namespace SettleAccount.Domain.BQ; + + +[Display(Name = "BBAC不可结算导入明细")] +public class BBAC_NOT_SA_DETAIL:SA_NOT_BASE +{ + ///// + ///// 对应字段(Material+ExternalCalNumber) + ///// + //[Display(Name = "LU+生产码")] + //public string KeyCode { get; set; } = null!; + + ///// + ///// 期间 + ///// + //[Display(Name = "期间")] + //public int Version { get; set; } + + ///// + ///// 结算单号 + ///// + //[Display(Name = "结算单号")] + //public string SettleBillNum { get; set; } = null!; + + ///// + ///// 对应字段Material + ///// + //[Display(Name = "零件号")] + //public string LU { get; set; } = null!; + + ///// + ///// 对应字段ExternalCalNumber + ///// + //[Display(Name = "生产码")] + //public string PN { get; set; } = null!; + + /// + /// 选择工厂导入 + /// + [Display(Name = "工厂地点")] + public string Site { get; set; } = null!; + + /// + /// 对应字段Quantity + /// + //[Display(Name = "结算数量")] + //public decimal Qty { get; set; } + + ///// + ///// 匹配价格表对应区间对应地点带出 + ///// + //[Display(Name = "单价")] + //public decimal Price { get; set; } + + /// + /// ExternalCallNumber包含(R0)为买单件 1为JIS 2.为买单件 + /// + [Display(Name = "业务类别")] + public string Category { get; set; } = null!; + + /// + /// 对应字段MovementType,996正常,997为退货 + /// + [Display(Name = "是否退货")] + public string IsReturn { get; set; } = null!; + + //[Display(Name = "发票分组号")] + //public string InvGroupNum { get; set; } = null!; + + ///// + ///// 对应字段PostingDate + ///// + //[Display(Name = "结算日期(收货日期)")] + //public DateTime SettleDate { get; set; } + + /// + /// 对应字段Reference + /// + //[Display(Name = "结算分组")] + //public string GroupNum { get; set; } = null!; + + public BBAC_NOT_SA_DETAIL(string keyCode, int version, string settleBillNum, string lU, string pN, string site, decimal qty, decimal price, string category, string isReturn, string invGroupNum, DateTime settleDate, string groupNum) + { + KeyCode = keyCode; + Version = version; + SettleBillNum = settleBillNum; + LU = lU; + PN = pN; + Site = site; + Qty = qty; + Price = price; + Category = category; + IsReturn = isReturn; + InvGroupNum = invGroupNum; + SettleDate = settleDate; + GroupNum = groupNum; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_PD_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_PD_DETAIL.cs new file mode 100644 index 00000000..76abc1e2 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_PD_DETAIL.cs @@ -0,0 +1,66 @@ +using SettleAccount.Bases; +using System; +using System.ComponentModel.DataAnnotations; + + +namespace SettleAccount.Domain.BQ; +[Display(Name = "BBAC待扣减实体")] +public class BBAC_PD_DETAIL:PD_BASE +{ + //[Display(Name = "LU+ASN单号")] + //public string KeyCode { get; set; } = null!; + + //[Display(Name = "期间")] + //public int Version { get; set; } + + //[Display(Name = "结算单号")] + //public string BillNum { get; set; } = null!; + + //[Display(Name = "零件号")] + //public string LU { get; set; } = null!; + + //[Display(Name = "替换零件号")] + //public string RELU { get; set; } = null!; + + //[Display(Name = "生产码")] + //public string PN { get; set; } = null!; + + //[Display(Name = "替换生产号")] + //public string REPN { get; set; } = null!; + + [Display(Name = "工厂地点")] + public string Site { get; set; } = null!; + + //[Display(Name = "结算数量")] + //public decimal Qty { get; set; } + + //[Display(Name = "单价")] + //public decimal Price { get; set; } + + //[Display(Name = "发票分组号")] + //public string InvGroupNum { get; set; } = null!; + + //[Display(Name = "结算日期(收货日期)")] + //public DateTime SettleDate { get; set; } + + //[Display(Name = "结算分组")] + //public string GroupNum { get; set; } = null!; + + public BBAC_PD_DETAIL(Guid guid, string keyCode, int version, string billNum, string lU, string rELU, string pN, string rEPN, string site, decimal qty, decimal price, string invGroupNum, DateTime settleDate, string groupNum) + { + Id = guid; + KeyCode = keyCode; + Version = version; + BillNum = billNum; + LU = lU; + RELU = rELU; + PN = pN; + REPN = rEPN; + Site = site; + Qty = qty; + Price = price; + InvGroupNum = invGroupNum; + SettleDate = settleDate; + GroupNum = groupNum; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SA.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SA.cs new file mode 100644 index 00000000..a2189d65 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SA.cs @@ -0,0 +1,131 @@ +using SettleAccount.Bases; +using System; +using System.ComponentModel.DataAnnotations; +using Volo.Abp.Domain.Entities.Auditing; + +namespace SettleAccount.Domain.BQ; + + +[Display(Name = "BBAC结算导入")] +public class BBAC_SA:FullAuditedAggregateRoot +{ + [Display(Name = "期间")] + public int Version { get; set; } + + [Display(Name = "结算单据")] + + public string BillNum { get; set; } = null!; + + [Display(Name = "出库单号")] + public string DNBillNum { get; set; } = null!; + + /// + /// 1、新建 2、已有出库3、已有扣减寄售库 + /// + [Display(Name = "状态")] + public string State { get; set; } = null!; + + public BBAC_SA(int version, string billNum, string dNBillNum, string state) + { + Version = version; + BillNum = billNum; + DNBillNum = dNBillNum; + State = state; + } +} +[Display(Name = "BBAC结算导入明细")] + +public class BBAC_SA_DETAIL:SA_BASE +{ + /// + /// 对应字段(Material+ExternalCalNumber) + /// + //[Display(Name = "LU+生产码")] + //public string KeyCode { get; set; } = null!; + + ///// + ///// 期间 + ///// + //[Display(Name = "期间")] + //public int Version { get; set; } + + ///// + ///// 结算单号 + ///// + //[Display(Name = "结算单号")] + //public string BillNum { get; set; } = null!; + + /// + /// 对应字段Material + /// + //[Display(Name = "零件号")] + //public string LU { get; set; } = null!; + + /// + /// 对应字段ExternalCalNumber + /// + //[Display(Name = "生产码")] + //public string PN { get; set; } = null!; + + /// + /// 选择工厂导入 + /// + [Display(Name = "工厂地点")] + public string Site { get; set; } = null!; + + /// + /// 对应字段Quantity + /// + //[Display(Name = "结算数量")] + //public decimal Qty { get; set; } + + ///// + ///// 匹配价格表对应区间对应地点带出 + ///// + //[Display(Name = "单价")] + //public decimal Price { get; set; } + + /// + /// ExternalCallNumber包含(R0)为买单件 1为JIS 2.为买单件 + /// + [Display(Name = "业务类别")] + public string Category { get; set; } = null!; + + /// + /// 对应字段MovementType,996正常,997为退货 + /// + [Display(Name = "是否退货")] + public string IsReturn { get; set; } = null!; + + /// + /// 对应字段PostingDate + /// + //[Display(Name = "结算日期(收货日期)")] + //public DateTime SettleDate { get; set; } + + ///// + ///// 对应字段Reference + ///// + //[Display(Name = "结算分组")] + //public string GroupNum { get; set; } = null!; + + //[Display(Name = "发票分组号")] + //public string InvGroupNum { get; set; } = null!; + + public BBAC_SA_DETAIL(string keyCode, int version, string billNum, string lU, string pN, string site, decimal qty, decimal price, string category, string isReturn, DateTime settleDate, string groupNum, string invGroupNum) + { + KeyCode = keyCode; + Version = version; + BillNum = billNum; + LU = lU; + PN = pN; + Site = site; + Qty = qty; + Price = price; + Category = category; + IsReturn = isReturn; + SettleDate = settleDate; + GroupNum = groupNum; + //InvGroupNum = invGroupNum; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_DETAIL.cs new file mode 100644 index 00000000..62bb7103 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_DETAIL.cs @@ -0,0 +1,60 @@ +using SettleAccount.Bases; +using System; +using System.ComponentModel.DataAnnotations; + + + + +namespace SettleAccount.Domain.BQ; + +[Display(Name = "BBAC发运单")] +public class BBAC_SE_DETAIL:SE_BASE +{ + //[Display(Name = "LU+生产码")] + //public string KeyCode { get; set; } = null!; + + //[Display(Name = "期间")] + //public int Version { get; set; } + + //[Display(Name = "零件号")] + //public string LU { get; set; } = null!; + + //[Display(Name = "生产码")] + //public string PN { get; set; } = null!; + + [Display(Name = "日顺序号")] + public string SeqNumber { get; set; } = null!; + + [Display(Name = "小总成号")] + public string AssemblyCode { get; set; } = null!; + + [Display(Name = "注塑码")] + public string InjectionCode { get; set; } = null!; + + //[Display(Name = "发货数量")] + //public decimal Qty { get; set; } + + [Display(Name = "订单时间")] + public DateTime BeginDate { get; set; } + + //[Display(Name = "发货时间")] + //public DateTime ShippingDate { get; set; } + + //[Display(Name = "Wms发货单号")] + //public string WmsBillNum { get; set; } = null!; + + public BBAC_SE_DETAIL(string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, DateTime beginDate, DateTime shippingDate, string wmsBillNum) + { + KeyCode = keyCode; + Version = version; + LU = lU; + PN = pN; + SeqNumber = seqNumber; + AssemblyCode = assemblyCode; + InjectionCode = injectionCode; + Qty = qty; + BeginDate = beginDate; + ShippingDate = shippingDate; + WmsBillNum = wmsBillNum; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_EDI.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_EDI.cs new file mode 100644 index 00000000..8a37e971 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_EDI.cs @@ -0,0 +1,51 @@ +using System; +using System.ComponentModel.DataAnnotations; +using Volo.Abp.Domain.Entities.Auditing; + +namespace SettleAccount.Domain.BQ; +[Display(Name = "BBAC的EDI数据")] +public class BBAC_SE_EDI:FullAuditedAggregateRoot +{ + [Display(Name = "LU+生产码")] + public string KeyCode { get; set; } = null!; + + [Display(Name = "期间")] + public int Version { get; set; } + + [Display(Name = "零件号")] + public string LU { get; set; } = null!; + + /// + /// 对应字段ExternalCalNumber + /// + [Display(Name = "生产码")] + public string PN { get; set; } = null!; + + [Display(Name = "日顺序号")] + public string SeqNumber { get; set; } = null!; + + [Display(Name = "小总成号")] + public string AssemblyCode { get; set; } = null!; + + [Display(Name = "注塑码")] + public string InjectionCode { get; set; } = null!; + + [Display(Name = "EDI数量")] + public decimal Qty { get; set; } + + [Display(Name = "订货时间")] + public DateTime BeginDate { get; set; } + + public BBAC_SE_EDI(string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, DateTime beginDate) + { + KeyCode = keyCode; + Version = version; + LU = lU; + PN = pN; + SeqNumber = seqNumber; + AssemblyCode = assemblyCode; + InjectionCode = injectionCode; + Qty = qty; + BeginDate = beginDate; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_REPORT.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_REPORT.cs new file mode 100644 index 00000000..c9bbb1fb --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_REPORT.cs @@ -0,0 +1,60 @@ +using System; +using System.ComponentModel.DataAnnotations; +using Volo.Abp.Domain.Entities.Auditing; + +namespace SettleAccount.Domain.BQ; +[Display(Name = "BBAC发运数据和EDI对比实体")] +public class BBAC_SE_REPORT:FullAuditedAggregateRoot +{ + [Display(Name = "LU+生产码")] + public string KeyCode { get; set; } = null!; + + [Display(Name = "期间")] + public int Version { get; set; } + + [Display(Name = "零件号")] + public string LU { get; set; } = null!; + + [Display(Name = "生产码")] + public string PN { get; set; } = null!; + + [Display(Name = "日顺序号")] + public string SeqNumber { get; set; } = null!; + + [Display(Name = "小总成号")] + public string AssemblyCode { get; set; } = null!; + + [Display(Name = "注塑码")] + public string InjectionCode { get; set; } = null!; + + [Display(Name = "发货数量")] + public decimal Qty { get; set; } + + [Display(Name = "EDI数量")] + public decimal EDIQty { get; set; } + + [Display(Name = "订单时间")] + public DateTime BeginDate { get; set; } + + [Display(Name = "发货时间")] + public DateTime ShippingDate { get; set; } + + [Display(Name = "Wms发货单号")] + public string WmsBillNum { get; set; } = null!; + + public BBAC_SE_REPORT(string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, decimal eDIQty, DateTime beginDate, DateTime shippingDate, string wmsBillNum) + { + KeyCode = keyCode; + Version = version; + LU = lU; + PN = pN; + SeqNumber = seqNumber; + AssemblyCode = assemblyCode; + InjectionCode = injectionCode; + Qty = qty; + EDIQty = eDIQty; + BeginDate = beginDate; + ShippingDate = shippingDate; + WmsBillNum = wmsBillNum; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_SA_REPORT.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_SA_REPORT.cs new file mode 100644 index 00000000..c3b7c178 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_SA_REPORT.cs @@ -0,0 +1,78 @@ +using System; +using System.ComponentModel.DataAnnotations; + + + +namespace SettleAccount.Domain.BQ; +[Display(Name = "BBAC发运数据与结算数据对比实体")] +public class BBAC_SE_SA_REPORT +{ + + [Display(Name = "LU+ASN单号")] + public string KeyCode { get; set; } = null!; + + /// + [Display(Name = "类别")] + public string Category { get; set; } = null!; + + [Display(Name = "Wms发货单号")] + public string WmsBillNum { get; set; } = null!; + [Display(Name = "发货时间")] + public DateTime ShippingDate { get; set; } + [Display(Name = "生产码")] + public string PN { get; set; } = null!; + [Display(Name = "日顺序号")] + public string SeqNumber { get; set; } = null!; + [Display(Name = "PJIS日顺序号")] + public string PJISSeqNumber { get; set; } = null!; + [Display(Name = "物料号")] + public string MaterialNumber { get; set; } = null!; + [Display(Name = "物料描述")] + public string MaterialDes { get; set; } = null!; + [Display(Name = "零件号")] + public string LU { get; set; } = null!; + /// + /// 结算数据中的过账日期 + /// + [Display(Name = "客户下线时间")] + public DateTime CustomerOfflineTime { get; set; } + [Display(Name = "小总成号")] + public string AssemblyCode { get; set; } = null!; + [Display(Name = "注塑码")] + public string InjectionCode { get; set; } = null!; + [Display(Name = "结算数量")] + public decimal SEQty { get; set; } + [Display(Name = "发货数量")] + public decimal WMSQty { get; set; } + [Display(Name = "EDI数量")] + public decimal EDIQty { get; set; } + [Display(Name = "匹配类型")] + public string MateType { get; set; } = null!; + [Display(Name = "定价")] + public decimal FixPrice { get; set; } + [Display(Name = "期间")] + public int Version { get; set; } + + public BBAC_SE_SA_REPORT(string keyCode, string category, string wmsBillNum, DateTime shippingDate, string pN, string seqNumber, string pJISSeqNumber, string materialNumber, string materialDes, string lU, DateTime customerOfflineTime, string assemblyCode, string injectionCode, decimal sEQty, decimal wMSQty, decimal eDIQty, string mateType, decimal fixPrice, int version) + { + KeyCode = keyCode; + Category = category; + WmsBillNum = wmsBillNum; + ShippingDate = shippingDate; + PN = pN; + SeqNumber = seqNumber; + PJISSeqNumber = pJISSeqNumber; + MaterialNumber = materialNumber; + MaterialDes = materialDes; + LU = lU; + CustomerOfflineTime = customerOfflineTime; + AssemblyCode = assemblyCode; + InjectionCode = injectionCode; + SEQty = sEQty; + WMSQty = wMSQty; + EDIQty = eDIQty; + MateType = mateType; + FixPrice = fixPrice; + Version = version; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_CAN_SA.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_CAN_SA.cs new file mode 100644 index 00000000..14d356d8 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_CAN_SA.cs @@ -0,0 +1,122 @@ +using SettleAccount.Bases; +using System; +using System.ComponentModel.DataAnnotations; +namespace SettleAccount.Domain.BQ; +[Display(Name = "HBPO可结算导入")] +public class HBPO_CAN_SA +{ + [Display(Name = "期间")] + public int Version { get; set; } + [Display(Name = "关联结算单号")] + public string SettleBillNum { get; set; } = null!; + [Display(Name = "结算单据")] + + public string BillNum { get; set; } = null!; + + /// + /// 1、新建 2、已有出库3、已有扣减寄售库 + /// + [Display(Name = "状态")] + public string State { get; set; } = null!; + + /// + /// 明细记录行数 + /// + [Display(Name = "明细记录行数")] + public string InvGroupNum { get; set; } = null!; + + public HBPO_CAN_SA(int version, string settleBillNum, string billNum, string state, string invGroupNum) + { + Version = version; + SettleBillNum = settleBillNum; + BillNum = billNum; + State = state; + InvGroupNum = invGroupNum; + } +} +[Display(Name = "HBPO可结算导入明细")] + +public class HBPO_CAN_SA_DETAIL:SA_CAN_BASE +{ + ///// + ///// 对应字段(PartNumber+ProductioNumber) + ///// + //[Display(Name = "LU+生产码")] + //public string KeyCode { get; set; } = null!; + + ///// + ///// 期间 + ///// + //[Display(Name = "期间")] + //public int Version { get; set; } + + ///// + ///// 结算单号 + ///// + //[Display(Name = "结算单号")] + //public string BillNum { get; set; } = null!; + [Display(Name = "关联结算单号")] + public string SettleBillNum { get; set; } = null!; + /// + /// 对应字段PartNumber + /// + //[Display(Name = "零件号")] + //public string LU { get; set; } = null!; + + ///// + ///// 对应字段productionlumber + ///// + //[Display(Name = "生产码")] + //public string PN { get; set; } = null!; + + /// + /// 对应字段filename 区分 cn1、cn5 + /// + [Display(Name = "工厂地点")] + public string Site { get; set; } = null!; + + ///// + ///// 对应字段Qty + ///// + //[Display(Name = "结算数量")] + //public decimal Qty { get; set; } + + ///// + ///// 匹配价格表对应区间带出 + ///// + //[Display(Name = "单价")] + //public decimal Price { get; set; } + + ///// + ///// 对应字段ReceiveDate + ///// + //[Display(Name = "结算日期(收货日期)")] + //public DateTime SettleDate { get; set; } + + /// + /// 对应字段DeliveryNode + /// + //[Display(Name = "结算分组")] + //public string GroupNum { get; set; } = null!; + + //[Display(Name = "发票分组号")] + //public string InvGroupNum { get; set; } = null!; + + public HBPO_CAN_SA_DETAIL(Guid id ,string keyCode, int version, string billNum, string settleBillNum, string lU, string pN, string site, decimal qty, decimal price, DateTime settleDate, string groupNum, string invGroupNum) + { + Id = id; + KeyCode = keyCode; + Version = version; + BillNum = billNum; + SettleBillNum = settleBillNum; + LU = lU; + PN = pN; + Site = site; + Qty = qty; + Price = price; + SettleDate = settleDate; + GroupNum = groupNum; + InvGroupNum = invGroupNum; + } +} + diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_NOT_SA_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_NOT_SA_DETAIL.cs new file mode 100644 index 00000000..e05cdbe6 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_NOT_SA_DETAIL.cs @@ -0,0 +1,111 @@ +using SettleAccount.Bases; +using System; +using System.ComponentModel.DataAnnotations; + + + +namespace SettleAccount.Domain.BQ; +// +//[Display(Name = "HBPO不可结算导入")] +//public class HBPO_NOT_SA: BaseEntity +//{ +// [Display(Name = "期间")] +// public int Version { get; set; } + +// [Display(Name = "结算单据")] +// [OneToMany] +// public string BillNum { get; set; } = null!; + +// [Display(Name = "出库单号")] +// public string DNBillNum { get; set; } = null!; + +// /// +// /// 1、新建 2、已有出库3、已有扣减寄售库 +// /// +// [Display(Name = "状态")] +// public string State { get; set; } = null!; + +// /// +// /// 明细记录行数 +// /// +// [Display(Name = "明细记录行数")] +// public string RecordCount { get; set; } = null!; +//} +[Display(Name = "HBPO不可结算导入明细")] +public class HBPO_NOT_SA_DETAIL :SA_NOT_BASE +{ + ///// + ///// 对应字段(PartNumber+ProductioNumber) + ///// + //[Display(Name = "LU+生产码")] + //public string KeyCode { get; set; } = null!; + + ///// + ///// 期间 + ///// + //[Display(Name = "期间")] + //public int Version { get; set; } + + //[Display(Name = "结算单号")] + //public string SettleBillNum { get; set; } = null!; + + ///// + ///// 对应字段PartNumber + ///// + //[Display(Name = "零件号")] + //public string LU { get; set; } = null!; + + ///// + ///// 对应字段productionlumber + ///// + //[Display(Name = "生产码")] + //public string PN { get; set; } = null!; + + /// + /// 对应字段filename 区分 cn1、cn5 + /// + [Display(Name = "工厂地点")] + public string Site { get; set; } = null!; + + /// + /// 对应字段Qty + /// + //[Display(Name = "结算数量")] + //public decimal Qty { get; set; } + + /// + /// 匹配价格表对应区间带出 + /// + //[Display(Name = "单价")] + //public decimal Price { get; set; } + + /// + /// 对应字段ReceiveDate + /// + //[Display(Name = "结算日期(收货日期)")] + //public DateTime SettleDate { get; set; } + + ///// + ///// 对应字段DeliveryNode + ///// + //[Display(Name = "结算分组")] + //public string GroupNum { get; set; } = null!; + + //[Display(Name = "发票分组号")] + //public string InvGroupNum { get; set; } = null!; + + public HBPO_NOT_SA_DETAIL(string keyCode, int version, string settleBillNum, string lU, string pN, string site, decimal qty, decimal price, DateTime settleDate, string groupNum, string invGroupNum) + { + KeyCode = keyCode; + Version = version; + SettleBillNum = settleBillNum; + LU = lU; + PN = pN; + Site = site; + Qty = qty; + Price = price; + SettleDate = settleDate; + GroupNum = groupNum; + InvGroupNum = invGroupNum; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_PD_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_PD_DETAIL.cs new file mode 100644 index 00000000..d479f116 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_PD_DETAIL.cs @@ -0,0 +1,64 @@ +using SettleAccount.Bases; +using System; +using System.ComponentModel.DataAnnotations; + + + +namespace SettleAccount.Domain.BQ; +[Display(Name = "HBPO待扣减实体")] +public class HBPO_PD_DETAIL :PD_BASE +{ + //[Display(Name = "LU+ASN单号")] + //public string KeyCode { get; set; } = null!; + + //[Display(Name = "期间")] + //public int Version { get; set; } + + //[Display(Name = "结算单号")] + //public string BillNum { get; set; } = null!; + + //[Display(Name = "零件号")] + //public string LU { get; set; } = null!; + + //[Display(Name = "替换零件号")] + //public string RELU { get; set; } = null!; + //[Display(Name = "生产码")] + //public string PN { get; set; } = null!; + + //[Display(Name = "替换生产号")] + //public string REPN { get; set; } = null!; + //[Display(Name = "工厂地点")] + public string Site { get; set; } = null!; + + //[Display(Name = "结算数量")] + //public decimal Qty { get; set; } + + //[Display(Name = "单价")] + //public decimal Price { get; set; } + + //[Display(Name = "发票分组号")] + //public string InvGroupNum { get; set; } = null!; + + //[Display(Name = "结算日期(收货日期)")] + //public DateTime SettleDate { get; set; } + + //[Display(Name = "结算分组")] + //public string GroupNum { get; set; } = null!; + + public HBPO_PD_DETAIL(string keyCode, int version, string billNum, string lU, string rELU, string pN, string rEPN, string site, decimal qty, decimal price, string invGroupNum, DateTime settleDate, string groupNum) + { + KeyCode = keyCode; + Version = version; + BillNum = billNum; + LU = lU; + RELU = rELU; + PN = pN; + REPN = rEPN; + Site = site; + Qty = qty; + Price = price; + InvGroupNum = invGroupNum; + SettleDate = settleDate; + GroupNum = groupNum; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SA.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SA.cs new file mode 100644 index 00000000..5c575993 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SA.cs @@ -0,0 +1,124 @@ +using SettleAccount.Bases; +using System; +using System.ComponentModel.DataAnnotations; +using Volo.Abp.Domain.Entities.Auditing; + +namespace SettleAccount.Domain.BQ; +[Display(Name = "HBPO结算导入")] +public class HBPO_SA :FullAuditedAggregateRoot +{ + [Display(Name = "期间")] + public int Version { get; set; } + + [Display(Name = "结算单据")] + + public string BillNum { get; set; } = null!; + + [Display(Name = "出库单号")] + public string DNBillNum { get; set; } = null!; + + /// + /// 1、新建 2、已有出库3、已有扣减寄售库 + /// + [Display(Name = "状态")] + public string State { get; set; } = null!; + + /// + /// 明细记录行数 + /// + [Display(Name = "明细记录行数")] + public string RecordCount { get; set; } = null!; + + public HBPO_SA(int version, string billNum, string dNBillNum, string state, string recordCount) + { + Version = version; + BillNum = billNum; + DNBillNum = dNBillNum; + State = state; + RecordCount = recordCount; + } +} + +[Display(Name = "HBPO结算导入明细")] + +public class HBPO_SA_DETAIL :SA_BASE + +{ + ///// + ///// 对应字段(PartNumber+ProductioNumber) + ///// + //[Display(Name = "LU+生产码")] + //public string KeyCode { get; set; } = null!; + + ///// + ///// 期间 + ///// + //[Display(Name = "期间")] + //public int Version { get; set; } + + ///// + ///// 结算单号 + ///// + //[Display(Name = "结算单号")] + //public string BillNum { get; set; } = null!; + + ///// + ///// 对应字段PartNumber + ///// + //[Display(Name = "零件号")] + //public string LU { get; set; } = null!; + + ///// + ///// 对应字段productionlumber + ///// + //[Display(Name = "生产码")] + //public string PN { get; set; } = null!; + + /// + /// 对应字段filename 区分 cn1、cn5 + /// + [Display(Name = "工厂地点")] + public string Site { get; set; } = null!; + + /// + /// 对应字段Qty + /// + //[Display(Name = "结算数量")] + //public decimal Qty { get; set; } + + ///// + ///// 匹配价格表对应区间带出 + ///// + //[Display(Name = "单价")] + //public decimal Price { get; set; } + + ///// + ///// 对应字段ReceiveDate + ///// + //[Display(Name = "结算日期(收货日期)")] + //public DateTime SettleDate { get; set; } + + ///// + ///// 对应字段DeliveryNode + ///// + //[Display(Name = "结算分组")] + //public string GroupNum { get; set; } = null!; + + [Display(Name = "发票分组号")] + public string InvGroupNum { get; set; } = null!; + + public HBPO_SA_DETAIL(string keyCode, int version, string billNum, string lU, string pN, string site, decimal qty, decimal price, DateTime settleDate, string groupNum, string invGroupNum) + { + KeyCode = keyCode; + Version = version; + BillNum = billNum; + LU = lU; + PN = pN; + Site = site; + Qty = qty; + Price = price; + SettleDate = settleDate; + GroupNum = groupNum; + InvGroupNum = invGroupNum; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_DETAIL.cs new file mode 100644 index 00000000..a4f14900 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_DETAIL.cs @@ -0,0 +1,59 @@ +using SettleAccount.Bases; +using System; +using System.ComponentModel.DataAnnotations; + + + +namespace SettleAccount.Domain.BQ; + +[Display(Name = "HBPO发运数据")] +public class HBPO_SE_DETAIL :SE_BASE +{ + //[Display(Name = "LU+生产码")] + //public string KeyCode { get; set; } = null!; + + //[Display(Name = "期间")] + //public int Version { get; set; } + + //[Display(Name = "零件号")] + //public string LU { get; set; } = null!; + + //[Display(Name = "生产码")] + //public string PN { get; set; } = null!; + + [Display(Name = "日顺序号")] + public string SeqNumber { get; set; } = null!; + + [Display(Name = "小总成号")] + public string AssemblyCode { get; set; } = null!; + + [Display(Name = "注塑码")] + public string InjectionCode { get; set; } = null!; + + //[Display(Name = "发货数量")] + //public decimal Qty { get; set; } + + [Display(Name = "订单时间")] + public DateTime BeginDate { get; set; } + + //[Display(Name = "发货时间")] + //public DateTime ShippingDate { get; set; } + + //[Display(Name = "Wms发货单号")] + //public string WmsBillNum { get; set; } = null!; + + public HBPO_SE_DETAIL(string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, DateTime beginDate, DateTime shippingDate, string wmsBillNum) + { + KeyCode = keyCode; + Version = version; + LU = lU; + PN = pN; + SeqNumber = seqNumber; + AssemblyCode = assemblyCode; + InjectionCode = injectionCode; + Qty = qty; + BeginDate = beginDate; + ShippingDate = shippingDate; + WmsBillNum = wmsBillNum; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_EDI.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_EDI.cs new file mode 100644 index 00000000..1113cc61 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_EDI.cs @@ -0,0 +1,51 @@ +using System; +using System.ComponentModel.DataAnnotations; +using Volo.Abp.Domain.Entities.Auditing; + +namespace SettleAccount.Domain.BQ; +[Display(Name = "HBPO的EDI数据")] +public class HBPO_SE_EDI :FullAuditedAggregateRoot +{ + [Display(Name = "LU+生产码")] + public string KeyCode { get; set; } = null!; + + [Display(Name = "期间")] + public int Version { get; set; } + + [Display(Name = "零件号")] + public string LU { get; set; } = null!; + + /// + /// 对应字段ExternalCalNumber + /// + [Display(Name = "生产码")] + public string PN { get; set; } = null!; + + [Display(Name = "日顺序号")] + public string SeqNumber { get; set; } = null!; + + [Display(Name = "小总成号")] + public string AssemblyCode { get; set; } = null!; + + [Display(Name = "注塑码")] + public string InjectionCode { get; set; } = null!; + + [Display(Name = "EDI数量")] + public decimal Qty { get; set; } + + [Display(Name = "订货时间")] + public DateTime BeginDate { get; set; } + + public HBPO_SE_EDI(string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, DateTime beginDate) + { + KeyCode = keyCode; + Version = version; + LU = lU; + PN = pN; + SeqNumber = seqNumber; + AssemblyCode = assemblyCode; + InjectionCode = injectionCode; + Qty = qty; + BeginDate = beginDate; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_REPORT.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_REPORT.cs new file mode 100644 index 00000000..53a7e8bf --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_REPORT.cs @@ -0,0 +1,60 @@ +using System; +using System.ComponentModel.DataAnnotations; +using Volo.Abp.Domain.Entities.Auditing; + +namespace SettleAccount.Domain.BQ; +[Display(Name = "HBPO发运数据和EDI对比实体")] +public class HBPO_SE_REPORT :FullAuditedAggregateRoot +{ + [Display(Name = "LU+生产码")] + public string KeyCode { get; set; } = null!; + + [Display(Name = "期间")] + public int Version { get; set; } + + [Display(Name = "零件号")] + public string LU { get; set; } = null!; + + [Display(Name = "生产码")] + public string PN { get; set; } = null!; + + [Display(Name = "日顺序号")] + public string SeqNumber { get; set; } = null!; + + [Display(Name = "小总成号")] + public string AssemblyCode { get; set; } = null!; + + [Display(Name = "注塑码")] + public string InjectionCode { get; set; } = null!; + + [Display(Name = "发货数量")] + public decimal Qty { get; set; } + + [Display(Name = "EDI数量")] + public decimal EDIQty { get; set; } + + [Display(Name = "订单时间")] + public DateTime BeginDate { get; set; } + + [Display(Name = "发货时间")] + public DateTime ShippingDate { get; set; } + + [Display(Name = "Wms发货单号")] + public string WmsBillNum { get; set; } = null!; + + public HBPO_SE_REPORT(string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, decimal eDIQty, DateTime beginDate, DateTime shippingDate, string wmsBillNum) + { + KeyCode = keyCode; + Version = version; + LU = lU; + PN = pN; + SeqNumber = seqNumber; + AssemblyCode = assemblyCode; + InjectionCode = injectionCode; + Qty = qty; + EDIQty = eDIQty; + BeginDate = beginDate; + ShippingDate = shippingDate; + WmsBillNum = wmsBillNum; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_SA_REPORT.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_SA_REPORT.cs new file mode 100644 index 00000000..585e39e8 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_SA_REPORT.cs @@ -0,0 +1,101 @@ +using SettleAccount.Bases; +using System; +using System.ComponentModel.DataAnnotations; + + + +namespace SettleAccount.Domain.BQ; +[Display(Name = "HBPO发运数据与结算数据对比实体")] +public class HBPO_SE_SA_REPORT :RE_BASE +{ + //[Display(Name = "LU+ASN单号")] + //public string KeyCode { get; set; } = null!; + + /// + /// 有结算无发货(无EDI数据) + ///有结算无发货(有EDI数据) + ///有结算有发货(无EDI数据) + ///有结算有发货(无价格信息) + ///有结算有发货(有EDI数据) + ///无结算有发货(有EDI数据) + ///无结算有发货(无EDI数据) + ///有结算有发货(有EDI数据) + ///有结算有发货(WMS多发) + /// + [Display(Name = "类别")] + public string Category { get; set; } = null!; + + //[Display(Name = "Wms发货单号")] + //public string WmsBillNum { get; set; } = null!; + + //[Display(Name = "发货时间")] + //public DateTime ShippingDate { get; set; } + + //[Display(Name = "生产码")] + //public string PN { get; set; } = null!; + + [Display(Name = "日顺序号")] + public string SeqNumber { get; set; } = null!; + + [Display(Name = "PJIS日顺序号")] + public string PJISSeqNumber { get; set; } = null!; + + [Display(Name = "物料号")] + public string MaterialNumber { get; set; } = null!; + + [Display(Name = "物料描述")] + public string MaterialDes { get; set; } = null!; + + //[Display(Name = "零件号")] + //public string LU { get; set; } = null!; + + /// + /// 结算数据中的过账日期 + /// + [Display(Name = "客户下线时间")] + public DateTime CustomerOfflineTime { get; set; } + + [Display(Name = "小总成号")] + public string AssemblyCode { get; set; } = null!; + + [Display(Name = "注塑码")] + public string InjectionCode { get; set; } = null!; + + [Display(Name = "结算数量")] + public decimal SEQty { get; set; } + + [Display(Name = "发货数量")] + public decimal WMSQty { get; set; } + + [Display(Name = "EDI数量")] + public decimal EDIQty { get; set; } + + [Display(Name = "匹配类型")] + public string MateType { get; set; } = null!; + + [Display(Name = "定价")] + public decimal FixPrice { get; set; } + + [Display(Name = "期间")] + public int Version { get; set; } + + public HBPO_SE_SA_REPORT(string keyCode, string category, string pN, string seqNumber, string pJISSeqNumber, string materialNumber, string materialDes, DateTime customerOfflineTime, string assemblyCode, string injectionCode, decimal sEQty, decimal wMSQty, decimal eDIQty, string mateType, decimal fixPrice, int version) + { + KeyCode = keyCode; + Category = category; + + SeqNumber = seqNumber; + PJISSeqNumber = pJISSeqNumber; + MaterialNumber = materialNumber; + MaterialDes = materialDes; + CustomerOfflineTime = customerOfflineTime; + AssemblyCode = assemblyCode; + InjectionCode = injectionCode; + SEQty = sEQty; + WMSQty = wMSQty; + EDIQty = eDIQty; + MateType = mateType; + FixPrice = fixPrice; + Version = version; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_GRP.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_GRP.cs new file mode 100644 index 00000000..9aa765ca --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_GRP.cs @@ -0,0 +1,102 @@ +using System; +using System.ComponentModel.DataAnnotations; +using Volo.Abp.Domain.Entities.Auditing; + +namespace SettleAccount.Domain.BQ; +[Display(Name = "发票分组")] +public class INVOICE_GRP : FullAuditedAggregateRoot +{ + [Display(Name = "实际纸质发票号")] + public string RealnvBillNum { get; set; } = null!; + + [Display(Name = "系统生成发票号")] + public string InvbillNum { get; set; } = null!; + + [Display(Name = "未税金额")] + public decimal Amt { get; set; } + + [Display(Name = "税后金额")] + public decimal TaxAmt { get; set; } + + [Display(Name = "发票分组号")] + public string InvGroupNum { get; set; } = null!; + + [Display(Name = "开票Excel文件")] + public string FileName { get; set; } = null!; + + /// + /// 1-HBPO 2-BBAC(和买单件一起开票,扣减库存时要注意分开) 3-JIT 4-备件、5-印度件 + /// + [Display(Name = "业务类别")] + public string BusinessType { get; set; } = null!; + + public INVOICE_GRP(string realnvBillNum, string invbillNum, decimal amt, decimal taxAmt, string invGroupNum, string fileName, string businessType) + { + RealnvBillNum = realnvBillNum; + InvbillNum = invbillNum; + Amt = amt; + TaxAmt = taxAmt; + InvGroupNum = invGroupNum; + FileName = fileName; + BusinessType = businessType; + } +} + +//[ShangWuShenHeGroup] +//[Hidden] +//[Display(Name = "财务管理审核明细")] +//public class INVOICE_DETAIL : BaseEntity +//{ +// [Display(Name = "零件号")] +// public string LU { get; set; } = null!; + +// [Display(Name = "单价")] +// public decimal PRICE { get; set; } + +// [Display(Name = "数量")] +// public decimal Qty { get; set; } + +// [Display(Name = "金额")] +// public decimal Amt { get; set; } + +// [Display(Name = "发票号")] +// public string InvbillNum { get; set; } = null!; +// [Display(Name = "发票分组号")] +// public string InvGroupNum { get; set; } = null!; +//[ShangWuShenHeGroup] +//[Display(Name = "待开票明细")] +//public class INVOICE_WAIT_DETAIL : BaseEntity +//{ +// [Display(Name = "发票号")] +// public string InvbillNum { get; set; } = null!; + +// [Display(Name = "零件号")] +// public string LU { get; set; } = null!; + +// [Display(Name = "单价")] +// public decimal PRICE { get; set; } + +// [Display(Name = "数量")] +// public decimal Qty { get; set; } + +// [Display(Name = "金额")] +// public decimal Amt { get; set; } + +// [Display(Name = "扩展字段1")] +// public string Extend1 { get; set; } = null!; + +// [Display(Name = "扩展字段2")] +// public string Extend2 { get; set; } = null!; + +// [Display(Name = "扩展字段3")] +// public string Extend3 { get; set; } = null!; + +// [Display(Name = "扩展字段4")] +// public string Extend4 { get; set; } = null!; +// [Display(Name = "期间")] +// public int Version { get; set; } +// [Display(Name = "发票分组号")] +// public string InvGroupNum { get; set; } = null!; +// [Display(Name = "业务分类")] +// public string BussiessType { get; set; } = null!; +//} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_MAP_GROUP.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_MAP_GROUP.cs new file mode 100644 index 00000000..13f23c3b --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_MAP_GROUP.cs @@ -0,0 +1,33 @@ +using System; +using System.ComponentModel.DataAnnotations; +using Volo.Abp.Domain.Entities.Auditing; + +namespace SettleAccount.Domain.BQ; + +[Display(Name = "发票和结算分组对应关系")] + +public class INVOICE_MAP_GROUP : FullAuditedAggregateRoot +{ + [Display(Name = "期间")] + public int Version { get; set; } + + [Display(Name = "发票号")] + public string InvbillNum { get; set; } = null!; + + [Display(Name = "发票分组号")] + public string InvGroupNum { get; set; } = null!; + + [Display(Name = "结算分组号")] + public string SettleGroupNum { get; set; } = null!; + + [Display(Name = "金额")] + public decimal Amt { get; set; } + + [Display(Name = "扩展字段1")] + public string Extend1 { get; set; } = null!; + + [Display(Name = "扩展字段2")] + public string Extend2 { get; set; } = null!; + + +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_NOT_SETTLE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_NOT_SETTLE.cs new file mode 100644 index 00000000..e1a0bb5a --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_NOT_SETTLE.cs @@ -0,0 +1,42 @@ +using System; +using System.ComponentModel.DataAnnotations; +using Volo.Abp.Domain.Entities.Auditing; + +namespace SettleAccount.Domain.BQ; + +[Display(Name = "不可结算零件号")] + +public class INVOICE_NOT_SETTLE : FullAuditedAggregateRoot +{ + [Display(Name = "期间")] + public int Version { get; set; } + + [Display(Name = "发票分组号")] + public string InvGroupNum { get; set; } = null!; + + [Display(Name = "结算分组号")] + public string SettleGroupNum { get; set; } = null!; + + [Display(Name = "可结算零件号")] + public string LU { get; set; } = null!; + + [Display(Name = "不可结算零件号")] + public string LU1 { get; set; } = null!; + + [Display(Name = "扩展字段1")] + public string Extend1 { get; set; } = null!; + + [Display(Name = "扩展字段2")] + public string Extend2 { get; set; } = null!; + + public INVOICE_NOT_SETTLE(int version, string invGroupNum, string settleGroupNum, string lU, string lU1, string extend1, string extend2) + { + Version = version; + InvGroupNum = invGroupNum; + SettleGroupNum = settleGroupNum; + LU = lU; + LU1 = lU1; + Extend1 = extend1; + Extend2 = extend2; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_WAIT_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_WAIT_DETAIL.cs new file mode 100644 index 00000000..7030fa45 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_WAIT_DETAIL.cs @@ -0,0 +1,64 @@ +using System; +using System.ComponentModel.DataAnnotations; +using Volo.Abp.Domain.Entities.Auditing; + +namespace SettleAccount.Domain.BQ; + +[Display(Name = "待开票明细")] +public class INVOICE_WAIT_DETAIL :FullAuditedAggregateRoot +{ + [Display(Name = "期间")] + public int Version { get; set; } + + [Display(Name = "发票号")] + public string InvbillNum { get; set; } = null!; + + [Display(Name = "发票分组号")] + public string InvGroupNum { get; set; } = null!; + + [Display(Name = "零件号")] + public string LU { get; set; } = null!; + + [Display(Name = "单价")] + public decimal PRICE { get; set; } + + [Display(Name = "数量")] + public decimal Qty { get; set; } + + [Display(Name = "金额")] + public decimal Amt { get; set; } + + /// + /// 1、BBAC-JIS 2、HBPO-JIS 3、JIT 4、备件 5、印度件 + /// + [Display(Name = "业务分类")] + public string BussiessType { get; set; } = null!; + + [Display(Name = "扩展字段1")] + public string Extend1 { get; set; } = null!; + + [Display(Name = "扩展字段2")] + public string Extend2 { get; set; } = null!; + + [Display(Name = "扩展字段3")] + public string Extend3 { get; set; } = null!; + + [Display(Name = "扩展字段4")] + public string Extend4 { get; set; } = null!; + + public INVOICE_WAIT_DETAIL(int version, string invbillNum, string invGroupNum, string lU, decimal pRICE, decimal qty, decimal amt, string bussiessType, string extend1, string extend2, string extend3, string extend4) + { + Version = version; + InvbillNum = invbillNum; + InvGroupNum = invGroupNum; + LU = lU; + PRICE = pRICE; + Qty = qty; + Amt = amt; + BussiessType = bussiessType; + Extend1 = extend1; + Extend2 = extend2; + Extend3 = extend3; + Extend4 = extend4; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/JIT_SE_SA_REPORT.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/JIT_SE_SA_REPORT.cs new file mode 100644 index 00000000..bce00559 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/JIT_SE_SA_REPORT.cs @@ -0,0 +1,103 @@ +using System; +using System.ComponentModel.DataAnnotations; + + + +namespace SettleAccount.Domain.BQ; +[Display(Name = "JIT发运数据与结算数据对比实体")] +public class JIT_SE_SA_REPORT +{ + [Display(Name = "LU+ASN单号")] + public string KeyCode { get; set; } = null!; + + /// + /// 有结算无发货(无EDI数据) + ///有结算无发货(有EDI数据) + ///有结算有发货(无EDI数据) + ///有结算有发货(无价格信息) + ///有结算有发货(有EDI数据) + ///无结算有发货(有EDI数据) + ///无结算有发货(无EDI数据) + ///有结算有发货(有EDI数据) + ///有结算有发货(WMS多发) + /// + [Display(Name = "类别")] + public string Category { get; set; } = null!; + + [Display(Name = "Wms发货单号")] + public string WmsBillNum { get; set; } = null!; + + [Display(Name = "发货时间")] + public DateTime ShippingDate { get; set; } + + [Display(Name = "生产码")] + public string PN { get; set; } = null!; + + [Display(Name = "日顺序号")] + public string SeqNumber { get; set; } = null!; + + [Display(Name = "PJIS日顺序号")] + public string PJISSeqNumber { get; set; } = null!; + + [Display(Name = "物料号")] + public string MaterialNumber { get; set; } = null!; + + [Display(Name = "物料描述")] + public string MaterialDes { get; set; } = null!; + + [Display(Name = "零件号")] + public string LU { get; set; } = null!; + + /// + /// 结算数据中的过账日期 + /// + [Display(Name = "客户下线时间")] + public DateTime CustomerOfflineTime { get; set; } + + [Display(Name = "小总成号")] + public string AssemblyCode { get; set; } = null!; + + [Display(Name = "注塑码")] + public string InjectionCode { get; set; } = null!; + + [Display(Name = "结算数量")] + public decimal SEQty { get; set; } + + [Display(Name = "发货数量")] + public decimal WMSQty { get; set; } + + [Display(Name = "EDI数量")] + public decimal EDIQty { get; set; } + + [Display(Name = "匹配类型")] + public string MateType { get; set; } = null!; + + [Display(Name = "定价")] + public decimal FixPrice { get; set; } + + [Display(Name = "期间")] + public int Version { get; set; } + + public JIT_SE_SA_REPORT(string keyCode, string category, string wmsBillNum, DateTime shippingDate, string pN, string seqNumber, string pJISSeqNumber, string materialNumber, string materialDes, string lU, DateTime customerOfflineTime, string assemblyCode, string injectionCode, decimal sEQty, decimal wMSQty, decimal eDIQty, string mateType, decimal fixPrice, int version) + { + KeyCode = keyCode; + Category = category; + WmsBillNum = wmsBillNum; + ShippingDate = shippingDate; + PN = pN; + SeqNumber = seqNumber; + PJISSeqNumber = pJISSeqNumber; + MaterialNumber = materialNumber; + MaterialDes = materialDes; + LU = lU; + CustomerOfflineTime = customerOfflineTime; + AssemblyCode = assemblyCode; + InjectionCode = injectionCode; + SEQty = sEQty; + WMSQty = wMSQty; + EDIQty = eDIQty; + MateType = mateType; + FixPrice = fixPrice; + Version = version; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/M_PD_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/M_PD_DETAIL.cs new file mode 100644 index 00000000..3fbb1e71 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/M_PD_DETAIL.cs @@ -0,0 +1,49 @@ +using System; +using System.ComponentModel.DataAnnotations; +using Volo.Abp.Domain.Entities.Auditing; + +namespace SettleAccount.Domain.BQ; +[Display(Name = "买单件待扣减实体")] +public class M_PD_DETAIL : FullAuditedAggregateRoot +{ + [Display(Name = "LU+ASN单号")] + public string KeyCode { get; set; } = null!; + + [Display(Name = "期间")] + public int Version { get; set; } + + [Display(Name = "结算单号")] + public string BillNum { get; set; } = null!; + + [Display(Name = "零件号")] + public string LU { get; set; } = null!; + + [Display(Name = "替换零件号")] + public string RELU { get; set; } = null!; + + [Display(Name = "生产码")] + public string PN { get; set; } = null!; + + [Display(Name = "替换生产号")] + public string REPN { get; set; } = null!; + + [Display(Name = "工厂地点")] + public string Site { get; set; } = null!; + + [Display(Name = "结算数量")] + public decimal Qty { get; set; } + + [Display(Name = "单价")] + public decimal Price { get; set; } + + [Display(Name = "发票分组号")] + public string InvGroupNum { get; set; } = null!; + + [Display(Name = "结算日期(收货日期)")] + public DateTime SettleDate { get; set; } + + [Display(Name = "结算分组")] + public string GroupNum { get; set; } = null!; + + +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/Material.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/Material.cs new file mode 100644 index 00000000..7b24b73c --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/Material.cs @@ -0,0 +1,445 @@ +using System.ComponentModel.DataAnnotations; + + + +namespace SettleAccount.Domain.BQ; + +[Display(Name = "物料主数据")] +public class Material +{ +} + +//[Order(8)] +//[SystemManagement] +//[Display(Name = "客户零件关系")] +//public class Class2 : BaseEntity +//{ +//} + +//[Order(9)] +//[SystemManagement] +//[Display(Name = "客户端替换件关系")] +//public class Class3 : BaseEntity +//{ +//} + +//[Order(10)] +//[SystemManagement] +//[Display(Name = "寄售库出库总成替换关系")] +//public class Class4 : BaseEntity +//{ +//} + +//[Order(11)] +//[SystemManagement] +//[Display(Name = "期间设置")] +//public class Class5 : BaseEntity +//{ +//} + +//[Order(12)] +//[SystemManagement] +//[Display(Name = "销售价格单")] +//public class TB_PRICE_LIST : BaseEntity +//{ +//} + +//[Order(2)] +//[Display(Name = "EDI业务")] +//public class EdiAttribute : GroupAttribute +//{ +//} + +//[Order(1)] +//[Edi] +//[Display(Name = "EDI和HBPO核对")] +//public class Class7 : BaseEntity +//{ +//} + +//[Order(2)] +//[Edi] +//[Display(Name = "EDI和BBAC核对")] +//public class Class8 : BaseEntity +//{ +//} + +//[Order(2)] +//[Display(Name = "JIS业务")] +//public class JISModule : BaseModule +//{ +//} + +//[Order(1)] +//[Module] +//[Display(Name = "数据输入")] +//public class JISDataInputAttribute : GroupAttribute +//{ +//} + +//[Order(2)] +//[Module] +//[Display(Name = "数据输出")] +//public class JISDataOutputAttribute : GroupAttribute +//{ +//} + +//[Order(1)] +// +//[Display(Name = "HBPO结算导入")] +//public class Class9 : BaseEntity +//{ +//} + +//[Order(2)] +// +//[Display(Name = "BBAC结算导入")] +//public class Class10 : BaseEntity +//{ +//} + +//[Order(3)] +// +//[Display(Name = "HBPO发运数据")] +//public class Class11 : BaseEntity +//{ +//} + +//[Order(4)] +// +//[Display(Name = "BBAC发运数据")] +//public class Class12 : BaseEntity +//{ +//} + +//[Order(1)] +//[JISDataOutput] +//[Display(Name = "HBPO结算核对明细输出")] +//public class Class13 : BaseEntity +//{ +//} + +//[Order(2)] +//[JISDataOutput] +//[Display(Name = "BBAC结算核对明细输出")] +//public class Class14 : BaseEntity +//{ +//} + +//[Order(3)] +//[JISDataOutput] +//[Display(Name = "HBPO无法出库明细与汇总输出")] +//public class Class15 : BaseEntity +//{ +//} + +//[Order(4)] +//[JISDataOutput] +//[Display(Name = "BBAC无法出库明细与汇总输出")] +//public class Class16 : BaseEntity +//{ +//} + +//[Order(5)] +//[JISDataOutput] +//[Display(Name = "HBPO结算发货明细与汇总")] +//public class Class17 : BaseEntity +//{ +//} + +//[Order(6)] +//[JISDataOutput] +//[Display(Name = "BBAC结算发货明细与汇总")] +//public class Class18 : BaseEntity +//{ +//} + +///// + +//[Order(3)] +//[Display(Name = "JIT业务")] +//public class JITModule : BaseModule +//{ +//} + +//[Order(1)] +//[Module] +//[Display(Name = "数据输入")] +//public class JITDataInputAttribute : GroupAttribute +//{ +//} + +//[Order(2)] +//[Module] +//[Display(Name = "数据输出")] +//public class JITDataOutputAttribute : GroupAttribute +//{ +//} + +//[Order(1)] +//[JITDataInput] +//[Display(Name = "JIT件结算导入")] +//public class Class19 : BaseEntity +//{ +//} +//IResource +//[Order(2)] +//[JITDataInput] +//[Display(Name = "JIT发运数据查询")] +//public class Class20 : BaseEntity +//{ +//} + +//[Order(1)] +//[JITDataOutput] +//[Display(Name = "JIT件结算核对明细输出")] +//public class Class21 : BaseEntity +//{ +//} + +//[Order(2)] +//[JITDataOutput] +//[Display(Name = "JIT件寄售库不能出库明细与汇总")] +//public class Class22 : BaseEntity +//{ +//} + +//[Order(3)] +//[JITDataOutput] +//[Display(Name = "JIT件结算发货明细与汇总")] +//public class Class23 : BaseEntity +//{ +//} + +///// + +//[Order(4)] +//[Display(Name = "备件业务")] +//public class BeiJianModule : BaseModule +//{ +//} + +//[Order(1)] +//[Module] +//[Display(Name = "数据输入")] +//public class BeiJianDataInputAttribute : GroupAttribute +//{ +//} + +//[Order(2)] +//[Module] +//[Display(Name = "数据输出")] +//public class BeiJianDataOutputAttribute : GroupAttribute +//{ +//} + +//[Order(1)] +//[BeiJianDataInput] +//[Display(Name = "备件结算导入")] +//public class Class24 : BaseEntity +//{ +//} + +//[Order(2)] +//[BeiJianDataInput] +//[Display(Name = "备件发运数据查询")] +//public class Class25 : BaseEntity +//{ +//} + +//[Order(1)] +//[BeiJianDataOutput] +//[Display(Name = "备件结算核对明细输出")] +//public class Class26 : BaseEntity +//{ +//} + +//[Order(2)] +//[BeiJianDataOutput] +//[Display(Name = "备件寄售库不能出库明细与汇总输出")] +//public class Class27 : BaseEntity +//{ +//} + +//[Order(3)] +//[BeiJianDataOutput] +//[Display(Name = "备件有结算有发货明细与汇总输出")] +//public class Class28 : BaseEntity +//{ +//} + +//[Order(4)] +//[BeiJianDataOutput] +//[Display(Name = "备件有结算无发货明细与汇总输出")] +//public class Class29 : BaseEntity +//{ +//} + +///// + +//[Order(5)] +//[Display(Name = "备件业务")] +//public class MaiDanJianModule : BaseModule +//{ +//} + +//[Order(1)] +//[Module] +//[Display(Name = "数据输入")] +//public class MaiDanJianDataInputAttribute : GroupAttribute +//{ +//} + +//[Order(2)] +//[Module] +//[Display(Name = "数据输出")] +//public class MaiDanJianDataOutputAttribute : GroupAttribute +//{ +//} + +//[Order(1)] +// +//[Display(Name = "印度件结算导入")] +//public class Class30 : BaseEntity +//{ +//} + +//[Order(2)] +// +//[Display(Name = "印度件发运数据查询")] +//public class Class31 : BaseEntity +//{ +//} + +//[Order(1)] +//[MaiDanJianDataOutput] +//[Display(Name = "印度件结算核对明细输出")] +//public class Class32 : BaseEntity +//{ +//} + +//[Order(2)] +//[MaiDanJianDataOutput] +//[Display(Name = "印度件寄售库不能出库明细与汇总输出")] +//public class Class33 : BaseEntity +//{ +//} + +//[Order(3)] +//[MaiDanJianDataOutput] +//[Display(Name = "印度件有结算有发货明细与汇总输出")] +//public class Class34 : BaseEntity +//{ +//} + +//[Order(4)] +//[MaiDanJianDataOutput] +//[Display(Name = "印度件有结算无发货明细与汇总输出")] +//public class Class35 : BaseEntity +//{ +//} + +////// +//[Order(6)] +//[Display(Name = "出库单")] +//public class ChuKuDanGroup : GroupAttribute +//{ +//} + +//[Order(1)] +//[ChuKuDanGroup] +//[Display(Name = "HBPO-JIS出库单")] +//public class Class36 : BaseEntity +//{ +//} + +//[Order(2)] +//[ChuKuDanGroup] +//[Display(Name = "BBAC-JIS出库单")] +//public class Class37 : BaseEntity +//{ +//} + +//[Order(3)] +//[ChuKuDanGroup] +//[Display(Name = "JIT件件出库单")] +//public class Class38 : BaseEntity +//{ +//} + +//[Order(4)] +//[ChuKuDanGroup] +//[Display(Name = "备件出库单")] +//public class Class39 : BaseEntity +//{ +//} + +//[Order(5)] +//[ChuKuDanGroup] +//[Display(Name = "印度件出库单")] +//public class Class40 : BaseEntity +//{ +//} + +//[Order(6)] +//[ChuKuDanGroup] +//[Display(Name = "不能出库记录出库业务")] +//public class Class41 : BaseEntity +//{ +//} + +////// +//[Order(7)] +//[Display(Name = "商务审核")] +//public class ShangWuShenHeGroup : GroupAttribute +//{ +//} + +//[Order(1)] +//[ShangWuShenHeGroup] +//[Display(Name = "HBPO-JIS 商务待开票")] +//public class Class42 : BaseEntity +//{ +//} + +//[Order(2)] +//[ShangWuShenHeGroup] +//[Display(Name = "BBAC-JIS商务待开票")] +//public class Class43 : BaseEntity +//{ +//} + +//[Order(3)] +//[ShangWuShenHeGroup] +//[Display(Name = "JIT件商务发票待开票")] +//public class Class44 : BaseEntity +//{ +//} + +//[Order(4)] +//[ShangWuShenHeGroup] +//[Display(Name = "备件商务发票待开票")] +//public class Class45 : BaseEntity +//{ +//} + +//[Order(5)] +//[ShangWuShenHeGroup] +//[Display(Name = "印度件商务发票待开票")] +//public class Class46 : BaseEntity +//{ +//} + +////// +//[Order(7)] +//[Display(Name = "财务审核")] +//public class CaiWuShenHeGroup : GroupAttribute +//{ +//} + +//[Order(1)] +//[CaiWuShenHeGroup] +//[Display(Name = " BBAC-JIS财务管理审核")] +//public class Class47 : BaseEntity +//{ +//} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/MaterialRelationship.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/MaterialRelationship.cs new file mode 100644 index 00000000..571554b5 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/MaterialRelationship.cs @@ -0,0 +1,11 @@ +using System.ComponentModel.DataAnnotations; + + + +namespace SettleAccount.Domain.BQ; + + +[Display(Name = "客户零件关系")] +public class MaterialRelationship +{ +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_CAN_SA.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_CAN_SA.cs new file mode 100644 index 00000000..3259bf50 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_CAN_SA.cs @@ -0,0 +1,131 @@ +using SettleAccount.Bases; +using System; +using System.ComponentModel.DataAnnotations; +using Volo.Abp.Domain.Entities.Auditing; + +namespace SettleAccount.Domain.BQ; +[Display(Name = "PUB可结算导入")] +public class PUB_CAN_SA :FullAuditedAggregateRoot +{ + [Display(Name = "期间")] + public int Version { get; set; } + + [Display(Name = "关联结算单号")] + public string SettleBillNum { get; set; } = null!; + + [Display(Name = "结算单据")] + public string BillNum { get; set; } = null!; + + /// + /// 1、新建 2、已有出库3、已有扣减寄售库 + /// + [Display(Name = "状态")] + public int State { get; set; } + /// + /// 1、JIT 2、买单件 3、备件 3、印度件 + /// + [Display(Name = "业务分类")] + public string BusinessType { get; set; } = null!; + + [Display(Name = "明细记录行数")] + public string InvGroupNum { get; set; } = null!; + + public PUB_CAN_SA(int version, string settleBillNum, string billNum, int state, string businessType, string invGroupNum) + { + Version = version; + SettleBillNum = settleBillNum; + BillNum = billNum; + State = state; + BusinessType = businessType; + InvGroupNum = invGroupNum; + } +} +[Display(Name = "PUB可结算导入明细")] +public class PUB_CAN_SA_DETAIL : SA_CAN_BASE +{ + //[Display(Name = "LU+ASN单号")] + //public string KeyCode { get; set; } = null!; + + ///// + ///// 期间 + ///// + //[Display(Name = "期间")] + //public int Version { get; set; } + + ///// + ///// 结算单号 + ///// + //[Display(Name = "结算单号")] + //public string BillNum { get; set; } = null!; + + [Display(Name = "关联结算单号")] + public string SettleBillNum { get; set; } = null!; + + /// + /// 对应字段PartNumber + /// + //[Display(Name = "零件号")] + //public string LU { get; set; } = null!; + + ///// + ///// 对应字段productionlumber + ///// + //[Display(Name = "生产码")] + //public string PN { get; set; } = null!; + + /// + /// 对应字段filename 区分 cn1、cn5 + /// + [Display(Name = "工厂地点")] + public string Site { get; set; } = null!; + + /// + /// 对应字段Qty + /// + //[Display(Name = "结算数量")] + //public decimal Qty { get; set; } + + ///// + ///// 匹配价格表对应区间带出 + ///// + //[Display(Name = "单价")] + //public decimal Price { get; set; } + + //[Display(Name = "发票分组号")] + //public string InvGroupNum { get; set; } = null!; + + ///// + ///// 对应字段ReceiveDate + ///// + //[Display(Name = "结算日期(收货日期)")] + //public DateTime SettleDate { get; set; } + + /// + /// 1、JIT 2、买单件 3、备件 3、印度件 + /// + [Display(Name = "业务类别")] + public string BusinessType { get; set; } = null!; + + /// + /// 对应字段DeliveryNode + /// + [Display(Name = "结算分组")] + public string GroupNum { get; set; } = null!; + + public PUB_CAN_SA_DETAIL(string keyCode, int version, string billNum, string settleBillNum, string lU, string pN, string site, decimal qty, decimal price, string invGroupNum, DateTime settleDate, string businessType, string groupNum) + { + KeyCode = keyCode; + Version = version; + BillNum = billNum; + SettleBillNum = settleBillNum; + LU = lU; + PN = pN; + Site = site; + Qty = qty; + Price = price; + InvGroupNum = invGroupNum; + SettleDate = settleDate; + BusinessType = businessType; + GroupNum = groupNum; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_NOT_SA_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_NOT_SA_DETAIL.cs new file mode 100644 index 00000000..69f8277a --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_NOT_SA_DETAIL.cs @@ -0,0 +1,92 @@ +using SettleAccount.Bases; +using System; +using System.ComponentModel.DataAnnotations; + + + +namespace SettleAccount.Domain.BQ; + +[Display(Name = "PUB不可结算导入明细")] +public class PUB_NOT_SA_DETAIL : SA_NOT_BASE +{ + //[Display(Name = "LU+生产码")] + //public string KeyCode { get; set; } = null!; + + ///// + ///// 期间 + ///// + //[Display(Name = "期间")] + //public int Version { get; set; } + + ///// + ///// 结算单号 + ///// + //[Display(Name = "结算单号")] + //public string SettleBillNum { get; set; } = null!; + + /// + /// 对应字段Material + /// + //[Display(Name = "零件号")] + //public string LU { get; set; } = null!; + + ///// + ///// 对应字段ExternalCalNumber + ///// + //[Display(Name = "生产码")] + //public string PN { get; set; } = null!; + + /// + /// 选择工厂导入 + /// + [Display(Name = "工厂地点")] + public string Site { get; set; } = null!; + + /// + /// 对应字段Quantity + /// + //[Display(Name = "结算数量")] + //public decimal Qty { get; set; } + + [Display(Name = "扩展1")] + public string Extend1 { get; set; } = null!; + + [Display(Name = "扩展2")] + public string Extend2 { get; set; } = null!; + + [Display(Name = "扩展3")] + public string Extend3 { get; set; } = null!; + + //[Display(Name = "单价")] + //public decimal Price { get; set; } + //[Display(Name = "发票分组号")] + //public string InvGroupNum { get; set; } = null!; + /// + /// 对应字段PostingDate + /// + //[Display(Name = "结算日期(收货日期)")] + //public DateTime SettleDate { get; set; } + [Display(Name = "业务分类")] + public string BusinessType { get; set; } = null!; + //[Display(Name = "结算分组")] + //public string GroupNum { get; set; } = null!; + + public PUB_NOT_SA_DETAIL(string keyCode, int version, string settleBillNum, string lU, string pN, string site, decimal qty, string extend1, string extend2, string extend3, decimal price, string invGroupNum, DateTime settleDate, string businessType, string groupNum) + { + KeyCode = keyCode; + Version = version; + SettleBillNum = settleBillNum; + LU = lU; + PN = pN; + Site = site; + Qty = qty; + Extend1 = extend1; + Extend2 = extend2; + Extend3 = extend3; + Price = price; + InvGroupNum = invGroupNum; + SettleDate = settleDate; + BusinessType = businessType; + GroupNum = groupNum; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_PD_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_PD_DETAIL.cs new file mode 100644 index 00000000..849f1d0f --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_PD_DETAIL.cs @@ -0,0 +1,73 @@ +using SettleAccount.Bases; +using System; +using System.ComponentModel.DataAnnotations; + + + +namespace SettleAccount.Domain.BQ; +[Display(Name = "PUB待扣减实体")] +public class PUB_PD_DETAIL :PD_BASE +{ + //[Display(Name = "LU+ASN单号")] + //public string KeyCode { get; set; } = null!; + + //[Display(Name = "期间")] + //public int Version { get; set; } + + //[Display(Name = "结算单号")] + //public string BillNum { get; set; } = null!; + + //[Display(Name = "零件号")] + //public string LU { get; set; } = null!; + + //[Display(Name = "替换零件号")] + //public string RELU { get; set; } = null!; + + //[Display(Name = "生产码")] + //public string PN { get; set; } = null!; + + //[Display(Name = "替换生产号")] + //public string REPN { get; set; } = null!; + + [Display(Name = "工厂地点")] + public string Site { get; set; } = null!; + + //[Display(Name = "结算数量")] + //public decimal Qty { get; set; } + + //[Display(Name = "单价")] + //public decimal Price { get; set; } + + /// + /// 1、JIT 2、买单件 3、备件 3、印度件 + /// + [Display(Name = "业务类别")] + public string BusinessType { get; set; } = null!; + + //[Display(Name = "发票分组号")] + //public string InvGroupNum { get; set; } = null!; + + //[Display(Name = "结算日期(收货日期)")] + //public DateTime SettleDate { get; set; } + + //[Display(Name = "结算分组")] + //public string GroupNum { get; set; } = null!; + + public PUB_PD_DETAIL(string keyCode, int version, string billNum, string lU, string rELU, string pN, string rEPN, string site, decimal qty, decimal price, string businessType, string invGroupNum, DateTime settleDate, string groupNum) + { + KeyCode = keyCode; + Version = version; + BillNum = billNum; + LU = lU; + RELU = rELU; + PN = pN; + REPN = rEPN; + Site = site; + Qty = qty; + Price = price; + BusinessType = businessType; + InvGroupNum = invGroupNum; + SettleDate = settleDate; + GroupNum = groupNum; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SA.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SA.cs new file mode 100644 index 00000000..8d293541 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SA.cs @@ -0,0 +1,120 @@ +using SettleAccount.Bases; +using System; +using System.ComponentModel.DataAnnotations; +using Volo.Abp.Domain.Entities.Auditing; + +namespace SettleAccount.Domain.BQ; +[Display(Name = "公用结算导入主表")] +public class PUB_SA : FullAuditedAggregateRoot +{ + [Display(Name = "期间")] + public int Version { get; set; } + + [Display(Name = "结算单据")] + public string BillNum { get; set; } = null!; + + /// + /// 1、新建 2、已有出库3、已有扣减寄售库 + /// + [Display(Name = "状态")] + public string State { get; set; } = null!; + + public PUB_SA(int version, string billNum, string state) + { + Version = version; + BillNum = billNum; + State = state; + } +} +[Display(Name = "公用结算导入明细")] +public class PUB_SA_DETAIL:SA_BASE +{ + ///// + ///// 对应字段(Material+External Delivery ID) + ///// + //[Display(Name = "LU+生产码")] + //public string KeyCode { get; set; } = null!; + + ///// + ///// 版本号 + ///// + //[Display(Name = "期间")] + //public int Version { get; set; } + + ///// + ///// 结算单号 + ///// + //[Display(Name = "结算单号")] + //public string BillNum { get; set; } = null!; + + /// + /// 对应字段Material + /// + //[Display(Name = "零件号")] + //public string LU { get; set; } = null!; + + ///// + ///// 取值字段External Delivery ID + ///// + //[Display(Name = "生产码")] + //public string PN { get; set; } = null!; + + /// + /// + /// + [Display(Name = "工厂地点")] + public string Site { get; set; } = null!; + + /// + /// 对应字段Quantity + /// + //[Display(Name = "结算数量")] + //public decimal Qty { get; set; } + + ///// + ///// 匹配价格表对应区间对应地点带出 + ///// + //[Display(Name = "单价")] + //public decimal Price { get; set; } + + + + ///// + ///// 对应字段PostingDate + ///// + //[Display(Name = "结算日期(收货日期)")] + //public DateTime SettleDate { get; set; } + + [Display(Name = "扩展字段1")] + public string Extend1 { get; set; } = null!; + + [Display(Name = "扩展字段2")] + public string Extend2 { get; set; } = null!; + + [Display(Name = "扩展字段3")] + public string Extend3 { get; set; } = null!; + + ///// + ///// 对应字段Reference + ///// + //[Display(Name = "结算分组")] + //public string GroupNum { get; set; } = null!; + + public PUB_SA_DETAIL(string keyCode, int version, string billNum, string lU, string pN, string site, decimal qty, decimal price, string invGroupNum, DateTime settleDate, string extend1, string extend2, string extend3, string groupNum) + { + KeyCode = keyCode; + Version = version; + BillNum = billNum; + LU = lU; + PN = pN; + Site = site; + Qty = qty; + Price = price; + + SettleDate = settleDate; + Extend1 = extend1; + Extend2 = extend2; + Extend3 = extend3; + GroupNum = groupNum; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SE_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SE_DETAIL.cs new file mode 100644 index 00000000..867f5a41 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SE_DETAIL.cs @@ -0,0 +1,66 @@ +using SettleAccount.Bases; +using System; +using System.ComponentModel.DataAnnotations; + + + + +namespace SettleAccount.Domain.BQ; +[Display(Name = "PUB发运数据")] +public class PUB_SE_DETAIL :SE_BASE +{ + //[Display(Name = "LU+生产码")] + //public string KeyCode { get; set; } = null!; + + //[Display(Name = "期间")] + //public int Version { get; set; } + + //[Display(Name = "零件号")] + //public string LU { get; set; } = null!; + + //[Display(Name = "ASN单号")] + //public string PN { get; set; } = null!; + + //[Display(Name = "发货数量")] + //public decimal Qty { get; set; } + + [Display(Name = "扩展1")] + public string Extend1 { get; set; } = null!; + + [Display(Name = "扩展2")] + public string Extend2 { get; set; } = null!; + + [Display(Name = "扩展3")] + public string Extend3 { get; set; } = null!; + + /// + /// 1、JIT 2、买单件 3、备件 3、印度件 + /// + [Display(Name = "业务分类")] + public string BusinessType { get; set; } = null!; + + [Display(Name = "订单时间")] + public DateTime BeginDate { get; set; } + + //[Display(Name = "发货时间")] + //public DateTime ShippingDate { get; set; } + + //[Display(Name = "Wms发货单号")] + //public string WmsBillNum { get; set; } = null!; + + public PUB_SE_DETAIL(string keyCode, int version, string lU, string pN, decimal qty, string extend1, string extend2, string extend3, string businessType, DateTime beginDate, DateTime shippingDate, string wmsBillNum) + { + KeyCode = keyCode; + Version = version; + LU = lU; + PN = pN; + Qty = qty; + Extend1 = extend1; + Extend2 = extend2; + Extend3 = extend3; + BusinessType = businessType; + BeginDate = beginDate; + ShippingDate = shippingDate; + WmsBillNum = wmsBillNum; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PURCHASE_PRICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PURCHASE_PRICE.cs new file mode 100644 index 00000000..03638929 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PURCHASE_PRICE.cs @@ -0,0 +1,11 @@ +using System.ComponentModel.DataAnnotations; + + + +namespace SettleAccount.Domain.BQ; + +[Display(Name = "采购价格单")] + +public class PURCHASE_PRICE +{ +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_PRICE_BJ.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_PRICE_BJ.cs new file mode 100644 index 00000000..31a5ab33 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_PRICE_BJ.cs @@ -0,0 +1,36 @@ +using System.ComponentModel.DataAnnotations; + + + +namespace SettleAccount.Domain.BQ; + + +[Display(Name = "备件价格表")] + +public class TB_PRICE_BJ +{ + /// + /// 取值字段【零件号】 + /// + [Display(Name = "零件号")] + public string LU { get; set; } = null!; + + /// + /// 取值字段【零件价格】 + /// + [Display(Name = "价格")] + public decimal Price { get; set; } + + /// + /// 取值字段【客户编码】 + /// + [Display(Name = "客户编码")] + public string ClientCode { get; set; } = null!; + + public TB_PRICE_BJ(string lU, decimal price, string clientCode) + { + LU = lU; + Price = price; + ClientCode = clientCode; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_PRICE_LIST.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_PRICE_LIST.cs new file mode 100644 index 00000000..fca6789e --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_PRICE_LIST.cs @@ -0,0 +1,52 @@ +using System; +using System.ComponentModel.DataAnnotations; + + + +namespace SettleAccount.Domain.BQ; + +[Display(Name = "销售价格单")] +public class TB_PRICE_LIST +{ + /// + /// 取值字段Part No. + /// + [Display(Name = "零件号")] + public string LU { get; set; } = null!; + + /// + /// 取值字段Total Price + /// + [Display(Name = "价格")] + public decimal Price { get; set; } + + /// + /// 取值字段Valid From + /// + [Display(Name = "开始时间")] + public DateTime BeginTime { get; set; } + + /// + /// 取值字段Valid To + /// + [Display(Name = "结束时间")] + public DateTime EndTime { get; set; } + + /// + /// 取值字段Plant取值字段1040=BBAC奔驰亦庄,1046=BBAC奔驰顺义,104T=HBPO + /// + [Display(Name = "客户编码")] + public string ClientCode { get; set; } = null!; + [Display(Name = "业务列别")] + public string BusinessType { get; set; } = null!; + + public TB_PRICE_LIST(string lU, decimal price, DateTime beginTime, DateTime endTime, string clientCode, string businessType) + { + LU = lU; + Price = price; + BeginTime = beginTime; + EndTime = endTime; + ClientCode = clientCode; + BusinessType = businessType; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_RePartsRelationship.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_RePartsRelationship.cs new file mode 100644 index 00000000..53e58ea5 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_RePartsRelationship.cs @@ -0,0 +1,35 @@ +using System.ComponentModel.DataAnnotations; + + + +namespace SettleAccount.Domain.BQ; + + +[Display(Name = "客户替换件关系")] +public class TB_RePartsRelationship +{ + /// + /// 取值字段【零件号】 + /// + [Display(Name = "零件号")] + public string LU { set; get; } = null!; + + /// + /// 取值字段【替换零件号】 + /// + [Display(Name = "替换零件号")] + public string RepLU { set; get; } = null!; + + [Display(Name = "客户编码")] + public string ClientCode { set; get; } = null!; + [Display(Name = "业务类型")] + public string BusinessType { set; get; } = null!; + + public TB_RePartsRelationship(string lU, string repLU, string clientCode, string businessType) + { + LU = lU; + RepLU = repLU; + ClientCode = clientCode; + BusinessType = businessType; + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/ISettleAccountBranchEfCoreRepository.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/ISettleAccountBranchEfCoreRepository.cs index ddc476d9..d1a8a9e5 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/ISettleAccountBranchEfCoreRepository.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/ISettleAccountBranchEfCoreRepository.cs @@ -32,7 +32,7 @@ namespace Win.Sfs.SettleAccount public interface ISettleAccountBQEfCoreRepository : IWinEfCoreRepository - , ITransientDependency + , ITransientDependency where TEntity : class, IEntity { diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/SettleAccount.Domain.csproj b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/SettleAccount.Domain.csproj index 6a137a39..225e6f9c 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/SettleAccount.Domain.csproj +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/SettleAccount.Domain.csproj @@ -1,4 +1,4 @@ - + From 90fabac22ecb706211444c4135730a4d1554e6dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A6=20=E8=B5=B5?= <89237069@qq.com> Date: Mon, 10 Jul 2023 10:34:03 +0800 Subject: [PATCH 04/14] =?UTF-8?q?=E4=B8=AA=E6=9B=B4=E6=96=B0=E7=89=88?= =?UTF-8?q?=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SettleAccount.Domain/Bases/EntityBase.cs | 53 ++- .../Entities/BQ/BBAC_NOT_SA_DETAIL.cs | 4 +- .../Entities/BQ/BBAC_SA.cs | 6 +- .../Entities/BQ/BBAC_SE_DETAIL.cs | 3 +- .../Entities/BQ/BBAC_SE_EDI.cs | 4 +- .../Entities/BQ/BBAC_SE_REPORT.cs | 4 +- .../Entities/BQ/BBAC_SE_SA_REPORT.cs | 8 +- .../Entities/BQ/HBPO_CAN_SA.cs | 10 +- .../Entities/BQ/HBPO_NOT_SA_DETAIL.cs | 3 +- .../Entities/BQ/HBPO_PD_DETAIL.cs | 3 +- .../Entities/BQ/HBPO_SA.cs | 6 +- .../Entities/BQ/HBPO_SE_DETAIL.cs | 3 +- .../Entities/BQ/HBPO_SE_EDI.cs | 3 +- .../Entities/BQ/HBPO_SE_REPORT.cs | 3 +- .../Entities/BQ/HBPO_SE_SA_REPORT.cs | 3 +- .../Entities/BQ/INVOICE_GRP.cs | 3 +- .../Entities/BQ/INVOICE_MAP_GROUP.cs | 12 +- .../Entities/BQ/INVOICE_NOT_SETTLE.cs | 3 +- .../Entities/BQ/INVOICE_WAIT_DETAIL.cs | 3 +- .../Entities/BQ/JIT_SE_SA_REPORT.cs | 31 +- .../Entities/BQ/Material.cs | 445 ------------------ .../Entities/BQ/MaterialRelationship.cs | 11 - .../Entities/BQ/PUB_CAN_SA.cs | 4 +- .../Entities/BQ/PUB_NOT_SA_DETAIL.cs | 3 - .../Entities/BQ/PUB_PD_DETAIL.cs | 3 +- .../Entities/BQ/PUB_SA.cs | 5 +- .../Entities/BQ/PUB_SE_DETAIL.cs | 3 +- .../Entities/BQ/TB_PRICE_BJ.cs | 36 -- .../Entities/BQ/TB_PRICE_LIST.cs | 52 -- ...AccountDbContextModelCreatingExtensions.cs | 90 +++- 30 files changed, 217 insertions(+), 603 deletions(-) delete mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/Material.cs delete mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/MaterialRelationship.cs delete mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_PRICE_BJ.cs delete mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_PRICE_LIST.cs diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Bases/EntityBase.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Bases/EntityBase.cs index 23b56038..587c3f7d 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Bases/EntityBase.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Bases/EntityBase.cs @@ -58,6 +58,7 @@ namespace SettleAccount.Bases public string GroupNum { set; get; } + } public interface ISA_CAN_BASE : ISBASE @@ -128,7 +129,7 @@ namespace SettleAccount.Bases } - public class RE_BASE : IRE_BASE + public class RE_BASE :FullAuditedAggregateRoot, IRE_BASE { /// 发货时间 /// @@ -153,6 +154,9 @@ namespace SettleAccount.Bases /// /// public string KeyCode { get; set ; } + + + } @@ -221,6 +225,12 @@ namespace SettleAccount.Bases /// public bool IsBom { set; get; } + public BASE_CONF(bool isRelationShip, bool isMaterial, bool isBom) + { + IsRelationShip = isRelationShip; + IsMaterial = isMaterial; + IsBom = isBom; + } } public class SA_BASE : FullAuditedAggregateRoot, ISA_BASE @@ -261,6 +271,19 @@ namespace SettleAccount.Bases /// 結算分組號 /// public string GroupNum { get ; set ; } + + //public SA_BASE(int version, decimal price, string billNum, DateTime settleDate, string lU, string pN, string keyCode, decimal qty, string groupNum) + //{ + // Version = version; + // Price = price; + // BillNum = billNum; + // SettleDate = settleDate; + // LU = lU; + // PN = pN; + // KeyCode = keyCode; + // Qty = qty; + // GroupNum = groupNum; + //} } public class SA_CAN_BASE : FullAuditedAggregateRoot, ISA_CAN_BASE @@ -305,6 +328,20 @@ namespace SettleAccount.Bases /// 結算分組號 /// public string GroupNum { get; set; } + + //public SA_CAN_BASE(int version, decimal price, string billNum, DateTime settleDate, string invGroupNum, string lU, string pN, string keyCode, decimal qty, string groupNum) + //{ + // Version = version; + // Price = price; + // BillNum = billNum; + // SettleDate = settleDate; + // InvGroupNum = invGroupNum; + // LU = lU; + // PN = pN; + // KeyCode = keyCode; + // Qty = qty; + // GroupNum = groupNum; + //} } public class SA_NOT_BASE : FullAuditedAggregateRoot, ISA_NOT_BASE { @@ -348,6 +385,20 @@ namespace SettleAccount.Bases /// 結算分組號 /// public string GroupNum { get; set; } + + //public SA_NOT_BASE(decimal price, int version, string settleBillNum, DateTime settleDate, string invGroupNum, string lU, string pN, string keyCode, decimal qty, string groupNum) + //{ + // Price = price; + // Version = version; + // SettleBillNum = settleBillNum; + // SettleDate = settleDate; + // InvGroupNum = invGroupNum; + // LU = lU; + // PN = pN; + // KeyCode = keyCode; + // Qty = qty; + // GroupNum = groupNum; + //} } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_NOT_SA_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_NOT_SA_DETAIL.cs index 76e29484..2218cba6 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_NOT_SA_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_NOT_SA_DETAIL.cs @@ -84,8 +84,10 @@ public class BBAC_NOT_SA_DETAIL:SA_NOT_BASE //[Display(Name = "结算分组")] //public string GroupNum { get; set; } = null!; - public BBAC_NOT_SA_DETAIL(string keyCode, int version, string settleBillNum, string lU, string pN, string site, decimal qty, decimal price, string category, string isReturn, string invGroupNum, DateTime settleDate, string groupNum) + public BBAC_NOT_SA_DETAIL(Guid guid, string keyCode, int version, string settleBillNum, string lU, string pN, string site, decimal qty, decimal price, string category, string isReturn, string invGroupNum, DateTime settleDate, string groupNum) { + Id = guid; + KeyCode = keyCode; Version = version; SettleBillNum = settleBillNum; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SA.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SA.cs index a2189d65..b3c65f82 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SA.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SA.cs @@ -25,8 +25,9 @@ public class BBAC_SA:FullAuditedAggregateRoot [Display(Name = "状态")] public string State { get; set; } = null!; - public BBAC_SA(int version, string billNum, string dNBillNum, string state) + public BBAC_SA(Guid guid, int version, string billNum, string dNBillNum, string state) { + Id = guid; Version = version; BillNum = billNum; DNBillNum = dNBillNum; @@ -112,8 +113,9 @@ public class BBAC_SA_DETAIL:SA_BASE //[Display(Name = "发票分组号")] //public string InvGroupNum { get; set; } = null!; - public BBAC_SA_DETAIL(string keyCode, int version, string billNum, string lU, string pN, string site, decimal qty, decimal price, string category, string isReturn, DateTime settleDate, string groupNum, string invGroupNum) + public BBAC_SA_DETAIL(Guid p_guid, string keyCode, int version, string billNum, string lU, string pN, string site, decimal qty, decimal price, string category, string isReturn, DateTime settleDate, string groupNum, string invGroupNum) { + Id= p_guid; KeyCode = keyCode; Version = version; BillNum = billNum; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_DETAIL.cs index 62bb7103..0ac09f1e 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_DETAIL.cs @@ -43,8 +43,9 @@ public class BBAC_SE_DETAIL:SE_BASE //[Display(Name = "Wms发货单号")] //public string WmsBillNum { get; set; } = null!; - public BBAC_SE_DETAIL(string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, DateTime beginDate, DateTime shippingDate, string wmsBillNum) + public BBAC_SE_DETAIL(Guid guid, string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, DateTime beginDate, DateTime shippingDate, string wmsBillNum) { + Id= guid; KeyCode = keyCode; Version = version; LU = lU; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_EDI.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_EDI.cs index 8a37e971..18012cbd 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_EDI.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_EDI.cs @@ -36,8 +36,10 @@ public class BBAC_SE_EDI:FullAuditedAggregateRoot [Display(Name = "订货时间")] public DateTime BeginDate { get; set; } - public BBAC_SE_EDI(string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, DateTime beginDate) + public BBAC_SE_EDI(Guid guid, string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, DateTime beginDate) { + Id = guid; + KeyCode = keyCode; Version = version; LU = lU; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_REPORT.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_REPORT.cs index c9bbb1fb..4b13bfeb 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_REPORT.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_REPORT.cs @@ -42,8 +42,10 @@ public class BBAC_SE_REPORT:FullAuditedAggregateRoot [Display(Name = "Wms发货单号")] public string WmsBillNum { get; set; } = null!; - public BBAC_SE_REPORT(string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, decimal eDIQty, DateTime beginDate, DateTime shippingDate, string wmsBillNum) + public BBAC_SE_REPORT(Guid guid, string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, decimal eDIQty, DateTime beginDate, DateTime shippingDate, string wmsBillNum) { + Id = guid; + KeyCode = keyCode; Version = version; LU = lU; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_SA_REPORT.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_SA_REPORT.cs index c3b7c178..73cc3312 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_SA_REPORT.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_SA_REPORT.cs @@ -1,11 +1,10 @@ using System; using System.ComponentModel.DataAnnotations; - - +using Volo.Abp.Domain.Entities.Auditing; namespace SettleAccount.Domain.BQ; [Display(Name = "BBAC发运数据与结算数据对比实体")] -public class BBAC_SE_SA_REPORT +public class BBAC_SE_SA_REPORT :FullAuditedAggregateRoot { [Display(Name = "LU+ASN单号")] @@ -53,8 +52,9 @@ public class BBAC_SE_SA_REPORT [Display(Name = "期间")] public int Version { get; set; } - public BBAC_SE_SA_REPORT(string keyCode, string category, string wmsBillNum, DateTime shippingDate, string pN, string seqNumber, string pJISSeqNumber, string materialNumber, string materialDes, string lU, DateTime customerOfflineTime, string assemblyCode, string injectionCode, decimal sEQty, decimal wMSQty, decimal eDIQty, string mateType, decimal fixPrice, int version) + public BBAC_SE_SA_REPORT(Guid guid, string keyCode, string category, string wmsBillNum, DateTime shippingDate, string pN, string seqNumber, string pJISSeqNumber, string materialNumber, string materialDes, string lU, DateTime customerOfflineTime, string assemblyCode, string injectionCode, decimal sEQty, decimal wMSQty, decimal eDIQty, string mateType, decimal fixPrice, int version) { + Id = guid; KeyCode = keyCode; Category = category; WmsBillNum = wmsBillNum; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_CAN_SA.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_CAN_SA.cs index 14d356d8..a3e283a4 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_CAN_SA.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_CAN_SA.cs @@ -1,9 +1,11 @@ using SettleAccount.Bases; using System; using System.ComponentModel.DataAnnotations; +using Volo.Abp.Domain.Entities.Auditing; + namespace SettleAccount.Domain.BQ; [Display(Name = "HBPO可结算导入")] -public class HBPO_CAN_SA +public class HBPO_CAN_SA :FullAuditedAggregateRoot { [Display(Name = "期间")] public int Version { get; set; } @@ -25,7 +27,7 @@ public class HBPO_CAN_SA [Display(Name = "明细记录行数")] public string InvGroupNum { get; set; } = null!; - public HBPO_CAN_SA(int version, string settleBillNum, string billNum, string state, string invGroupNum) + public HBPO_CAN_SA(Guid guid, int version, string settleBillNum, string billNum, string state, string invGroupNum) { Version = version; SettleBillNum = settleBillNum; @@ -102,9 +104,9 @@ public class HBPO_CAN_SA_DETAIL:SA_CAN_BASE //[Display(Name = "发票分组号")] //public string InvGroupNum { get; set; } = null!; - public HBPO_CAN_SA_DETAIL(Guid id ,string keyCode, int version, string billNum, string settleBillNum, string lU, string pN, string site, decimal qty, decimal price, DateTime settleDate, string groupNum, string invGroupNum) + public HBPO_CAN_SA_DETAIL(Guid guid ,string keyCode, int version, string billNum, string settleBillNum, string lU, string pN, string site, decimal qty, decimal price, DateTime settleDate, string groupNum, string invGroupNum) { - Id = id; + Id = guid; KeyCode = keyCode; Version = version; BillNum = billNum; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_NOT_SA_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_NOT_SA_DETAIL.cs index e05cdbe6..d5607b23 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_NOT_SA_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_NOT_SA_DETAIL.cs @@ -94,8 +94,9 @@ public class HBPO_NOT_SA_DETAIL :SA_NOT_BASE //[Display(Name = "发票分组号")] //public string InvGroupNum { get; set; } = null!; - public HBPO_NOT_SA_DETAIL(string keyCode, int version, string settleBillNum, string lU, string pN, string site, decimal qty, decimal price, DateTime settleDate, string groupNum, string invGroupNum) + public HBPO_NOT_SA_DETAIL(Guid guid ,string keyCode, int version, string settleBillNum, string lU, string pN, string site, decimal qty, decimal price, DateTime settleDate, string groupNum, string invGroupNum) { + Id = guid; KeyCode = keyCode; Version = version; SettleBillNum = settleBillNum; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_PD_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_PD_DETAIL.cs index d479f116..ecc9139d 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_PD_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_PD_DETAIL.cs @@ -45,8 +45,9 @@ public class HBPO_PD_DETAIL :PD_BASE //[Display(Name = "结算分组")] //public string GroupNum { get; set; } = null!; - public HBPO_PD_DETAIL(string keyCode, int version, string billNum, string lU, string rELU, string pN, string rEPN, string site, decimal qty, decimal price, string invGroupNum, DateTime settleDate, string groupNum) + public HBPO_PD_DETAIL(Guid guid, string keyCode, int version, string billNum, string lU, string rELU, string pN, string rEPN, string site, decimal qty, decimal price, string invGroupNum, DateTime settleDate, string groupNum) { + Id = guid; KeyCode = keyCode; Version = version; BillNum = billNum; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SA.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SA.cs index 5c575993..d226b097 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SA.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SA.cs @@ -29,8 +29,9 @@ public class HBPO_SA :FullAuditedAggregateRoot [Display(Name = "明细记录行数")] public string RecordCount { get; set; } = null!; - public HBPO_SA(int version, string billNum, string dNBillNum, string state, string recordCount) + public HBPO_SA(Guid guid, int version, string billNum, string dNBillNum, string state, string recordCount) { + this.Id= guid; Version = version; BillNum = billNum; DNBillNum = dNBillNum; @@ -107,8 +108,9 @@ public class HBPO_SA_DETAIL :SA_BASE [Display(Name = "发票分组号")] public string InvGroupNum { get; set; } = null!; - public HBPO_SA_DETAIL(string keyCode, int version, string billNum, string lU, string pN, string site, decimal qty, decimal price, DateTime settleDate, string groupNum, string invGroupNum) + public HBPO_SA_DETAIL(Guid guid, string keyCode, int version, string billNum, string lU, string pN, string site, decimal qty, decimal price, DateTime settleDate, string groupNum, string invGroupNum) { + this.Id= guid; KeyCode = keyCode; Version = version; BillNum = billNum; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_DETAIL.cs index a4f14900..fced3b3e 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_DETAIL.cs @@ -42,8 +42,9 @@ public class HBPO_SE_DETAIL :SE_BASE //[Display(Name = "Wms发货单号")] //public string WmsBillNum { get; set; } = null!; - public HBPO_SE_DETAIL(string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, DateTime beginDate, DateTime shippingDate, string wmsBillNum) + public HBPO_SE_DETAIL(Guid guid, string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, DateTime beginDate, DateTime shippingDate, string wmsBillNum) { + this.Id = guid; KeyCode = keyCode; Version = version; LU = lU; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_EDI.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_EDI.cs index 1113cc61..e6225b60 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_EDI.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_EDI.cs @@ -36,8 +36,9 @@ public class HBPO_SE_EDI :FullAuditedAggregateRoot [Display(Name = "订货时间")] public DateTime BeginDate { get; set; } - public HBPO_SE_EDI(string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, DateTime beginDate) + public HBPO_SE_EDI(Guid guid, string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, DateTime beginDate) { + Id=guid; KeyCode = keyCode; Version = version; LU = lU; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_REPORT.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_REPORT.cs index 53a7e8bf..cdf4def9 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_REPORT.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_REPORT.cs @@ -42,8 +42,9 @@ public class HBPO_SE_REPORT :FullAuditedAggregateRoot [Display(Name = "Wms发货单号")] public string WmsBillNum { get; set; } = null!; - public HBPO_SE_REPORT(string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, decimal eDIQty, DateTime beginDate, DateTime shippingDate, string wmsBillNum) + public HBPO_SE_REPORT(Guid guid, string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, decimal eDIQty, DateTime beginDate, DateTime shippingDate, string wmsBillNum) { + Id = guid; KeyCode = keyCode; Version = version; LU = lU; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_SA_REPORT.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_SA_REPORT.cs index 585e39e8..098228c3 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_SA_REPORT.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_SA_REPORT.cs @@ -79,8 +79,9 @@ public class HBPO_SE_SA_REPORT :RE_BASE [Display(Name = "期间")] public int Version { get; set; } - public HBPO_SE_SA_REPORT(string keyCode, string category, string pN, string seqNumber, string pJISSeqNumber, string materialNumber, string materialDes, DateTime customerOfflineTime, string assemblyCode, string injectionCode, decimal sEQty, decimal wMSQty, decimal eDIQty, string mateType, decimal fixPrice, int version) + public HBPO_SE_SA_REPORT(Guid guid, string keyCode, string category, string pN, string seqNumber, string pJISSeqNumber, string materialNumber, string materialDes, DateTime customerOfflineTime, string assemblyCode, string injectionCode, decimal sEQty, decimal wMSQty, decimal eDIQty, string mateType, decimal fixPrice, int version) { + Id = guid; KeyCode = keyCode; Category = category; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_GRP.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_GRP.cs index 9aa765ca..2f36a6fc 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_GRP.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_GRP.cs @@ -30,8 +30,9 @@ public class INVOICE_GRP : FullAuditedAggregateRoot [Display(Name = "业务类别")] public string BusinessType { get; set; } = null!; - public INVOICE_GRP(string realnvBillNum, string invbillNum, decimal amt, decimal taxAmt, string invGroupNum, string fileName, string businessType) + public INVOICE_GRP(Guid guid, string realnvBillNum, string invbillNum, decimal amt, decimal taxAmt, string invGroupNum, string fileName, string businessType) { + Id= guid; RealnvBillNum = realnvBillNum; InvbillNum = invbillNum; Amt = amt; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_MAP_GROUP.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_MAP_GROUP.cs index 13f23c3b..e1ebac1d 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_MAP_GROUP.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_MAP_GROUP.cs @@ -29,5 +29,15 @@ public class INVOICE_MAP_GROUP : FullAuditedAggregateRoot [Display(Name = "扩展字段2")] public string Extend2 { get; set; } = null!; - + public INVOICE_MAP_GROUP(Guid guid, int version, string invbillNum, string invGroupNum, string settleGroupNum, decimal amt, string extend1, string extend2) + { + Id = guid; + Version = version; + InvbillNum = invbillNum; + InvGroupNum = invGroupNum; + SettleGroupNum = settleGroupNum; + Amt = amt; + Extend1 = extend1; + Extend2 = extend2; + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_NOT_SETTLE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_NOT_SETTLE.cs index e1a0bb5a..17583d95 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_NOT_SETTLE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_NOT_SETTLE.cs @@ -29,8 +29,9 @@ public class INVOICE_NOT_SETTLE : FullAuditedAggregateRoot [Display(Name = "扩展字段2")] public string Extend2 { get; set; } = null!; - public INVOICE_NOT_SETTLE(int version, string invGroupNum, string settleGroupNum, string lU, string lU1, string extend1, string extend2) + public INVOICE_NOT_SETTLE(Guid guid, int version, string invGroupNum, string settleGroupNum, string lU, string lU1, string extend1, string extend2) { + Id = guid; Version = version; InvGroupNum = invGroupNum; SettleGroupNum = settleGroupNum; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_WAIT_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_WAIT_DETAIL.cs index 7030fa45..e4958d4f 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_WAIT_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_WAIT_DETAIL.cs @@ -46,8 +46,9 @@ public class INVOICE_WAIT_DETAIL :FullAuditedAggregateRoot [Display(Name = "扩展字段4")] public string Extend4 { get; set; } = null!; - public INVOICE_WAIT_DETAIL(int version, string invbillNum, string invGroupNum, string lU, decimal pRICE, decimal qty, decimal amt, string bussiessType, string extend1, string extend2, string extend3, string extend4) + public INVOICE_WAIT_DETAIL(Guid guid, int version, string invbillNum, string invGroupNum, string lU, decimal pRICE, decimal qty, decimal amt, string bussiessType, string extend1, string extend2, string extend3, string extend4) { + Id = guid; Version = version; InvbillNum = invbillNum; InvGroupNum = invGroupNum; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/JIT_SE_SA_REPORT.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/JIT_SE_SA_REPORT.cs index bce00559..61a5d508 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/JIT_SE_SA_REPORT.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/JIT_SE_SA_REPORT.cs @@ -1,14 +1,14 @@ -using System; +using SettleAccount.Bases; +using System; using System.ComponentModel.DataAnnotations; - - +using Volo.Abp.Domain.Entities.Auditing; namespace SettleAccount.Domain.BQ; [Display(Name = "JIT发运数据与结算数据对比实体")] -public class JIT_SE_SA_REPORT +public class JIT_SE_SA_REPORT :RE_BASE { - [Display(Name = "LU+ASN单号")] - public string KeyCode { get; set; } = null!; + //[Display(Name = "LU+ASN单号")] + //public string KeyCode { get; set; } = null!; /// /// 有结算无发货(无EDI数据) @@ -24,14 +24,14 @@ public class JIT_SE_SA_REPORT [Display(Name = "类别")] public string Category { get; set; } = null!; - [Display(Name = "Wms发货单号")] - public string WmsBillNum { get; set; } = null!; + //[Display(Name = "Wms发货单号")] + //public string WmsBillNum { get; set; } = null!; - [Display(Name = "发货时间")] - public DateTime ShippingDate { get; set; } + //[Display(Name = "发货时间")] + //public DateTime ShippingDate { get; set; } - [Display(Name = "生产码")] - public string PN { get; set; } = null!; + //[Display(Name = "生产码")] + //public string PN { get; set; } = null!; [Display(Name = "日顺序号")] public string SeqNumber { get; set; } = null!; @@ -45,8 +45,8 @@ public class JIT_SE_SA_REPORT [Display(Name = "物料描述")] public string MaterialDes { get; set; } = null!; - [Display(Name = "零件号")] - public string LU { get; set; } = null!; + //[Display(Name = "零件号")] + //public string LU { get; set; } = null!; /// /// 结算数据中的过账日期 @@ -78,8 +78,9 @@ public class JIT_SE_SA_REPORT [Display(Name = "期间")] public int Version { get; set; } - public JIT_SE_SA_REPORT(string keyCode, string category, string wmsBillNum, DateTime shippingDate, string pN, string seqNumber, string pJISSeqNumber, string materialNumber, string materialDes, string lU, DateTime customerOfflineTime, string assemblyCode, string injectionCode, decimal sEQty, decimal wMSQty, decimal eDIQty, string mateType, decimal fixPrice, int version) + public JIT_SE_SA_REPORT(Guid guid , string keyCode, string category, string wmsBillNum, DateTime shippingDate, string pN, string seqNumber, string pJISSeqNumber, string materialNumber, string materialDes, string lU, DateTime customerOfflineTime, string assemblyCode, string injectionCode, decimal sEQty, decimal wMSQty, decimal eDIQty, string mateType, decimal fixPrice, int version) { + Id = guid; KeyCode = keyCode; Category = category; WmsBillNum = wmsBillNum; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/Material.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/Material.cs deleted file mode 100644 index 7b24b73c..00000000 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/Material.cs +++ /dev/null @@ -1,445 +0,0 @@ -using System.ComponentModel.DataAnnotations; - - - -namespace SettleAccount.Domain.BQ; - -[Display(Name = "物料主数据")] -public class Material -{ -} - -//[Order(8)] -//[SystemManagement] -//[Display(Name = "客户零件关系")] -//public class Class2 : BaseEntity -//{ -//} - -//[Order(9)] -//[SystemManagement] -//[Display(Name = "客户端替换件关系")] -//public class Class3 : BaseEntity -//{ -//} - -//[Order(10)] -//[SystemManagement] -//[Display(Name = "寄售库出库总成替换关系")] -//public class Class4 : BaseEntity -//{ -//} - -//[Order(11)] -//[SystemManagement] -//[Display(Name = "期间设置")] -//public class Class5 : BaseEntity -//{ -//} - -//[Order(12)] -//[SystemManagement] -//[Display(Name = "销售价格单")] -//public class TB_PRICE_LIST : BaseEntity -//{ -//} - -//[Order(2)] -//[Display(Name = "EDI业务")] -//public class EdiAttribute : GroupAttribute -//{ -//} - -//[Order(1)] -//[Edi] -//[Display(Name = "EDI和HBPO核对")] -//public class Class7 : BaseEntity -//{ -//} - -//[Order(2)] -//[Edi] -//[Display(Name = "EDI和BBAC核对")] -//public class Class8 : BaseEntity -//{ -//} - -//[Order(2)] -//[Display(Name = "JIS业务")] -//public class JISModule : BaseModule -//{ -//} - -//[Order(1)] -//[Module] -//[Display(Name = "数据输入")] -//public class JISDataInputAttribute : GroupAttribute -//{ -//} - -//[Order(2)] -//[Module] -//[Display(Name = "数据输出")] -//public class JISDataOutputAttribute : GroupAttribute -//{ -//} - -//[Order(1)] -// -//[Display(Name = "HBPO结算导入")] -//public class Class9 : BaseEntity -//{ -//} - -//[Order(2)] -// -//[Display(Name = "BBAC结算导入")] -//public class Class10 : BaseEntity -//{ -//} - -//[Order(3)] -// -//[Display(Name = "HBPO发运数据")] -//public class Class11 : BaseEntity -//{ -//} - -//[Order(4)] -// -//[Display(Name = "BBAC发运数据")] -//public class Class12 : BaseEntity -//{ -//} - -//[Order(1)] -//[JISDataOutput] -//[Display(Name = "HBPO结算核对明细输出")] -//public class Class13 : BaseEntity -//{ -//} - -//[Order(2)] -//[JISDataOutput] -//[Display(Name = "BBAC结算核对明细输出")] -//public class Class14 : BaseEntity -//{ -//} - -//[Order(3)] -//[JISDataOutput] -//[Display(Name = "HBPO无法出库明细与汇总输出")] -//public class Class15 : BaseEntity -//{ -//} - -//[Order(4)] -//[JISDataOutput] -//[Display(Name = "BBAC无法出库明细与汇总输出")] -//public class Class16 : BaseEntity -//{ -//} - -//[Order(5)] -//[JISDataOutput] -//[Display(Name = "HBPO结算发货明细与汇总")] -//public class Class17 : BaseEntity -//{ -//} - -//[Order(6)] -//[JISDataOutput] -//[Display(Name = "BBAC结算发货明细与汇总")] -//public class Class18 : BaseEntity -//{ -//} - -///// - -//[Order(3)] -//[Display(Name = "JIT业务")] -//public class JITModule : BaseModule -//{ -//} - -//[Order(1)] -//[Module] -//[Display(Name = "数据输入")] -//public class JITDataInputAttribute : GroupAttribute -//{ -//} - -//[Order(2)] -//[Module] -//[Display(Name = "数据输出")] -//public class JITDataOutputAttribute : GroupAttribute -//{ -//} - -//[Order(1)] -//[JITDataInput] -//[Display(Name = "JIT件结算导入")] -//public class Class19 : BaseEntity -//{ -//} -//IResource -//[Order(2)] -//[JITDataInput] -//[Display(Name = "JIT发运数据查询")] -//public class Class20 : BaseEntity -//{ -//} - -//[Order(1)] -//[JITDataOutput] -//[Display(Name = "JIT件结算核对明细输出")] -//public class Class21 : BaseEntity -//{ -//} - -//[Order(2)] -//[JITDataOutput] -//[Display(Name = "JIT件寄售库不能出库明细与汇总")] -//public class Class22 : BaseEntity -//{ -//} - -//[Order(3)] -//[JITDataOutput] -//[Display(Name = "JIT件结算发货明细与汇总")] -//public class Class23 : BaseEntity -//{ -//} - -///// - -//[Order(4)] -//[Display(Name = "备件业务")] -//public class BeiJianModule : BaseModule -//{ -//} - -//[Order(1)] -//[Module] -//[Display(Name = "数据输入")] -//public class BeiJianDataInputAttribute : GroupAttribute -//{ -//} - -//[Order(2)] -//[Module] -//[Display(Name = "数据输出")] -//public class BeiJianDataOutputAttribute : GroupAttribute -//{ -//} - -//[Order(1)] -//[BeiJianDataInput] -//[Display(Name = "备件结算导入")] -//public class Class24 : BaseEntity -//{ -//} - -//[Order(2)] -//[BeiJianDataInput] -//[Display(Name = "备件发运数据查询")] -//public class Class25 : BaseEntity -//{ -//} - -//[Order(1)] -//[BeiJianDataOutput] -//[Display(Name = "备件结算核对明细输出")] -//public class Class26 : BaseEntity -//{ -//} - -//[Order(2)] -//[BeiJianDataOutput] -//[Display(Name = "备件寄售库不能出库明细与汇总输出")] -//public class Class27 : BaseEntity -//{ -//} - -//[Order(3)] -//[BeiJianDataOutput] -//[Display(Name = "备件有结算有发货明细与汇总输出")] -//public class Class28 : BaseEntity -//{ -//} - -//[Order(4)] -//[BeiJianDataOutput] -//[Display(Name = "备件有结算无发货明细与汇总输出")] -//public class Class29 : BaseEntity -//{ -//} - -///// - -//[Order(5)] -//[Display(Name = "备件业务")] -//public class MaiDanJianModule : BaseModule -//{ -//} - -//[Order(1)] -//[Module] -//[Display(Name = "数据输入")] -//public class MaiDanJianDataInputAttribute : GroupAttribute -//{ -//} - -//[Order(2)] -//[Module] -//[Display(Name = "数据输出")] -//public class MaiDanJianDataOutputAttribute : GroupAttribute -//{ -//} - -//[Order(1)] -// -//[Display(Name = "印度件结算导入")] -//public class Class30 : BaseEntity -//{ -//} - -//[Order(2)] -// -//[Display(Name = "印度件发运数据查询")] -//public class Class31 : BaseEntity -//{ -//} - -//[Order(1)] -//[MaiDanJianDataOutput] -//[Display(Name = "印度件结算核对明细输出")] -//public class Class32 : BaseEntity -//{ -//} - -//[Order(2)] -//[MaiDanJianDataOutput] -//[Display(Name = "印度件寄售库不能出库明细与汇总输出")] -//public class Class33 : BaseEntity -//{ -//} - -//[Order(3)] -//[MaiDanJianDataOutput] -//[Display(Name = "印度件有结算有发货明细与汇总输出")] -//public class Class34 : BaseEntity -//{ -//} - -//[Order(4)] -//[MaiDanJianDataOutput] -//[Display(Name = "印度件有结算无发货明细与汇总输出")] -//public class Class35 : BaseEntity -//{ -//} - -////// -//[Order(6)] -//[Display(Name = "出库单")] -//public class ChuKuDanGroup : GroupAttribute -//{ -//} - -//[Order(1)] -//[ChuKuDanGroup] -//[Display(Name = "HBPO-JIS出库单")] -//public class Class36 : BaseEntity -//{ -//} - -//[Order(2)] -//[ChuKuDanGroup] -//[Display(Name = "BBAC-JIS出库单")] -//public class Class37 : BaseEntity -//{ -//} - -//[Order(3)] -//[ChuKuDanGroup] -//[Display(Name = "JIT件件出库单")] -//public class Class38 : BaseEntity -//{ -//} - -//[Order(4)] -//[ChuKuDanGroup] -//[Display(Name = "备件出库单")] -//public class Class39 : BaseEntity -//{ -//} - -//[Order(5)] -//[ChuKuDanGroup] -//[Display(Name = "印度件出库单")] -//public class Class40 : BaseEntity -//{ -//} - -//[Order(6)] -//[ChuKuDanGroup] -//[Display(Name = "不能出库记录出库业务")] -//public class Class41 : BaseEntity -//{ -//} - -////// -//[Order(7)] -//[Display(Name = "商务审核")] -//public class ShangWuShenHeGroup : GroupAttribute -//{ -//} - -//[Order(1)] -//[ShangWuShenHeGroup] -//[Display(Name = "HBPO-JIS 商务待开票")] -//public class Class42 : BaseEntity -//{ -//} - -//[Order(2)] -//[ShangWuShenHeGroup] -//[Display(Name = "BBAC-JIS商务待开票")] -//public class Class43 : BaseEntity -//{ -//} - -//[Order(3)] -//[ShangWuShenHeGroup] -//[Display(Name = "JIT件商务发票待开票")] -//public class Class44 : BaseEntity -//{ -//} - -//[Order(4)] -//[ShangWuShenHeGroup] -//[Display(Name = "备件商务发票待开票")] -//public class Class45 : BaseEntity -//{ -//} - -//[Order(5)] -//[ShangWuShenHeGroup] -//[Display(Name = "印度件商务发票待开票")] -//public class Class46 : BaseEntity -//{ -//} - -////// -//[Order(7)] -//[Display(Name = "财务审核")] -//public class CaiWuShenHeGroup : GroupAttribute -//{ -//} - -//[Order(1)] -//[CaiWuShenHeGroup] -//[Display(Name = " BBAC-JIS财务管理审核")] -//public class Class47 : BaseEntity -//{ -//} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/MaterialRelationship.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/MaterialRelationship.cs deleted file mode 100644 index 571554b5..00000000 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/MaterialRelationship.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System.ComponentModel.DataAnnotations; - - - -namespace SettleAccount.Domain.BQ; - - -[Display(Name = "客户零件关系")] -public class MaterialRelationship -{ -} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_CAN_SA.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_CAN_SA.cs index 3259bf50..5155c3d3 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_CAN_SA.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_CAN_SA.cs @@ -109,8 +109,8 @@ public class PUB_CAN_SA_DETAIL : SA_CAN_BASE /// /// 对应字段DeliveryNode /// - [Display(Name = "结算分组")] - public string GroupNum { get; set; } = null!; + //[Display(Name = "结算分组")] + //public string GroupNum { get; set; } = null!; public PUB_CAN_SA_DETAIL(string keyCode, int version, string billNum, string settleBillNum, string lU, string pN, string site, decimal qty, decimal price, string invGroupNum, DateTime settleDate, string businessType, string groupNum) { diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_NOT_SA_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_NOT_SA_DETAIL.cs index 69f8277a..dac62626 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_NOT_SA_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_NOT_SA_DETAIL.cs @@ -1,9 +1,6 @@ using SettleAccount.Bases; using System; using System.ComponentModel.DataAnnotations; - - - namespace SettleAccount.Domain.BQ; [Display(Name = "PUB不可结算导入明细")] diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_PD_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_PD_DETAIL.cs index 849f1d0f..ac0df6ca 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_PD_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_PD_DETAIL.cs @@ -53,8 +53,9 @@ public class PUB_PD_DETAIL :PD_BASE //[Display(Name = "结算分组")] //public string GroupNum { get; set; } = null!; - public PUB_PD_DETAIL(string keyCode, int version, string billNum, string lU, string rELU, string pN, string rEPN, string site, decimal qty, decimal price, string businessType, string invGroupNum, DateTime settleDate, string groupNum) + public PUB_PD_DETAIL(Guid guid, string keyCode, int version, string billNum, string lU, string rELU, string pN, string rEPN, string site, decimal qty, decimal price, string businessType, string invGroupNum, DateTime settleDate, string groupNum) { + Id = guid; KeyCode = keyCode; Version = version; BillNum = billNum; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SA.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SA.cs index 8d293541..1e445f94 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SA.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SA.cs @@ -19,7 +19,7 @@ public class PUB_SA : FullAuditedAggregateRoot [Display(Name = "状态")] public string State { get; set; } = null!; - public PUB_SA(int version, string billNum, string state) + public PUB_SA(Guid guid, int version, string billNum, string state) { Version = version; BillNum = billNum; @@ -100,8 +100,9 @@ public class PUB_SA_DETAIL:SA_BASE //[Display(Name = "结算分组")] //public string GroupNum { get; set; } = null!; - public PUB_SA_DETAIL(string keyCode, int version, string billNum, string lU, string pN, string site, decimal qty, decimal price, string invGroupNum, DateTime settleDate, string extend1, string extend2, string extend3, string groupNum) + public PUB_SA_DETAIL(Guid guid, string keyCode, int version, string billNum, string lU, string pN, string site, decimal qty, decimal price, string invGroupNum, DateTime settleDate, string extend1, string extend2, string extend3, string groupNum) { + Id=guid; KeyCode = keyCode; Version = version; BillNum = billNum; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SE_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SE_DETAIL.cs index 867f5a41..6c677f89 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SE_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SE_DETAIL.cs @@ -48,8 +48,9 @@ public class PUB_SE_DETAIL :SE_BASE //[Display(Name = "Wms发货单号")] //public string WmsBillNum { get; set; } = null!; - public PUB_SE_DETAIL(string keyCode, int version, string lU, string pN, decimal qty, string extend1, string extend2, string extend3, string businessType, DateTime beginDate, DateTime shippingDate, string wmsBillNum) + public PUB_SE_DETAIL(Guid guid, string keyCode, int version, string lU, string pN, decimal qty, string extend1, string extend2, string extend3, string businessType, DateTime beginDate, DateTime shippingDate, string wmsBillNum) { + Id=guid; KeyCode = keyCode; Version = version; LU = lU; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_PRICE_BJ.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_PRICE_BJ.cs deleted file mode 100644 index 31a5ab33..00000000 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_PRICE_BJ.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.ComponentModel.DataAnnotations; - - - -namespace SettleAccount.Domain.BQ; - - -[Display(Name = "备件价格表")] - -public class TB_PRICE_BJ -{ - /// - /// 取值字段【零件号】 - /// - [Display(Name = "零件号")] - public string LU { get; set; } = null!; - - /// - /// 取值字段【零件价格】 - /// - [Display(Name = "价格")] - public decimal Price { get; set; } - - /// - /// 取值字段【客户编码】 - /// - [Display(Name = "客户编码")] - public string ClientCode { get; set; } = null!; - - public TB_PRICE_BJ(string lU, decimal price, string clientCode) - { - LU = lU; - Price = price; - ClientCode = clientCode; - } -} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_PRICE_LIST.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_PRICE_LIST.cs deleted file mode 100644 index fca6789e..00000000 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/TB_PRICE_LIST.cs +++ /dev/null @@ -1,52 +0,0 @@ -using System; -using System.ComponentModel.DataAnnotations; - - - -namespace SettleAccount.Domain.BQ; - -[Display(Name = "销售价格单")] -public class TB_PRICE_LIST -{ - /// - /// 取值字段Part No. - /// - [Display(Name = "零件号")] - public string LU { get; set; } = null!; - - /// - /// 取值字段Total Price - /// - [Display(Name = "价格")] - public decimal Price { get; set; } - - /// - /// 取值字段Valid From - /// - [Display(Name = "开始时间")] - public DateTime BeginTime { get; set; } - - /// - /// 取值字段Valid To - /// - [Display(Name = "结束时间")] - public DateTime EndTime { get; set; } - - /// - /// 取值字段Plant取值字段1040=BBAC奔驰亦庄,1046=BBAC奔驰顺义,104T=HBPO - /// - [Display(Name = "客户编码")] - public string ClientCode { get; set; } = null!; - [Display(Name = "业务列别")] - public string BusinessType { get; set; } = null!; - - public TB_PRICE_LIST(string lU, decimal price, DateTime beginTime, DateTime endTime, string clientCode, string businessType) - { - LU = lU; - Price = price; - BeginTime = beginTime; - EndTime = endTime; - ClientCode = clientCode; - BusinessType = businessType; - } -} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs index b3795b1a..781c867a 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs @@ -44,6 +44,7 @@ using Win.Sfs.SettleAccount.Entities.SecMatch; using Win.Sfs.SettleAccount.Entities.UnHQSettleAccounts; using Win.Sfs.SettleAccount.Errors; +using SettleAccount.Domain.BQ; namespace Win.Sfs.SettleAccount { @@ -101,7 +102,7 @@ namespace Win.Sfs.SettleAccount #region 红旗M平台、一汽轿车 - + /// @@ -122,7 +123,7 @@ namespace Win.Sfs.SettleAccount b.Property(x => x.CustomerMaterialCode).HasMaxLength(CommonConsts.MaxCodeLength); b.Property(x => x.MaterialCode).HasMaxLength(CommonConsts.MaxCodeLength); - b.HasIndex(x => new { x.CustomerMaterialCode,x.BillNum }); + b.HasIndex(x => new { x.CustomerMaterialCode, x.BillNum }); }); } @@ -152,10 +153,10 @@ namespace Win.Sfs.SettleAccount b.Property(x => x.MaterialGroup).HasMaxLength(50); b.Property(x => x.MaterialGroupCode).HasMaxLength(50); - b.Property(x=>x.SaleCode).HasMaxLength(50); + b.Property(x => x.SaleCode).HasMaxLength(50); b.Property(x => x.SettleCode).HasMaxLength(50); //创建组合索引 - + }); } @@ -172,13 +173,13 @@ namespace Win.Sfs.SettleAccount b.Property(x => x.MaterialCode).HasMaxLength(50); b.Property(x => x.MaterialDesc).HasMaxLength(100); b.Property(x => x.Client).IsRequired().HasMaxLength(50); - + b.Property(x => x.MaterialCode).HasMaxLength(50); b.Property(x => x.MaterialDesc).HasMaxLength(150); b.Property(x => x.MaterialGroup).HasMaxLength(50); b.Property(x => x.MaterialGroupCode).HasMaxLength(50); - + //创建组合索引 @@ -447,15 +448,88 @@ namespace Win.Sfs.SettleAccount } + private static void ConfigureBBAC_CAN_SA(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_BBAC_CAN_SA", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.BillNum).HasMaxLength(50); + b.Property(x => x.SettleBillNum).HasMaxLength(50); + b.Property(x => x.State).HasMaxLength(50); + b.Property(x => x.InvGroupNum).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + + } + + private static void ConfigureBBAC_CAN_SA_DETAIL(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_BBAC_CAN_SA_DETAIL", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.SettleBillNum).HasMaxLength(50); + b.Property(x => x.Site).HasMaxLength(50); + b.Property(x => x.Category).HasMaxLength(50); + b.Property(x => x.IsReturn).HasMaxLength(50); + b.Property(x => x.BillNum).HasMaxLength(50); + b.Property(x => x.InvGroupNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.GroupNum).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + private static void ConfigureBBAC_PD_DETAIL(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_BBAC_PD_DETAIL", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.Site).HasMaxLength(50); + b.Property(x => x.BillNum).HasMaxLength(50); + b.Property(x => x.InvGroupNum).HasMaxLength(50); + b.Property(x => x.GroupNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.RELU).HasMaxLength(50); + b.Property(x => x.REPN).HasMaxLength(50); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); } - #endregion } - + + + + + #endregion + #region 红旗 + + + + + + #endregion + +} + From f0c9b7d074fc1e1adc66e04c5cbdee2783fc20b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A6=20=E8=B5=B5?= <89237069@qq.com> Date: Mon, 10 Jul 2023 11:13:39 +0800 Subject: [PATCH 05/14] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E4=B8=8A=E4=B8=8B?= =?UTF-8?q?=E6=96=87=E5=9F=BA=E7=A1=80=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../appsettings.json | 9 +- ...AccountDbContextModelCreatingExtensions.cs | 709 +++++++++++++++++- 2 files changed, 704 insertions(+), 14 deletions(-) diff --git a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.json b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.json index 29dfea13..434bb5aa 100644 --- a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.json +++ b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.json @@ -4,7 +4,12 @@ }, "ConnectionStrings": { "Default": "Server=dev.ccwin-in.com,13319;Database=BJABP;User ID=ccwin-in;Password=Microsoft@2022;Trusted_Connection=False;TrustServerCertificate=True", - "SettleAccountService": "Server=dev.ccwin-in.com,13319;Database=SettleAccountService;User ID=ccwin-in;Password=Microsoft@2022;Trusted_Connection=False;TrustServerCertificate=True;" + "SettleAccountService": "Server=dev.ccwin-in.com,13319;Database=SettleAccountService;User ID=ccwin-in;Password=Microsoft@2022;Trusted_Connection=False;TrustServerCertificate=True;", + + + + + }, "Serilog": { @@ -85,4 +90,4 @@ } -} \ No newline at end of file +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs index 781c867a..0e99c015 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs @@ -45,6 +45,7 @@ using Win.Sfs.SettleAccount.Entities.SecMatch; using Win.Sfs.SettleAccount.Entities.UnHQSettleAccounts; using Win.Sfs.SettleAccount.Errors; using SettleAccount.Domain.BQ; +using System.DirectoryServices.ActiveDirectory; namespace Win.Sfs.SettleAccount { @@ -68,29 +69,69 @@ namespace Win.Sfs.SettleAccount + builder.ConfigureBBAC_CAN_SA(options); + builder.ConfigureBBAC_CAN_SA_DETAIL(options); + builder.ConfigureBBAC_NOT_SA_DETAIL(options); + builder.ConfigureBBAC_PD_DETAIL(options); + builder.ConfigureBBAC_SA(options); + builder.ConfigureBBAC_SA_DETAIL(options); + builder.ConfigureBBAC_SE_DETAIL(options); + builder.ConfigureBBAC_SE_EDI(options); + builder.ConfigureBBAC_SE_REPORT(options); + builder.ConfigureBBAC_SE_SA_REPORT(options); + builder.ConfigureHBPO_CAN_SA(options); + builder.ConfigureHBPO_CAN_SA_DETAIL(options); + builder.ConfigureHBPO_NOT_SA_DETAIL(options); + builder.ConfigureHBPO_PD_DETAIL(options); + builder.ConfigureHBPO_SA(options); + builder.ConfigureHBPO_SA_DETAIL(options); + builder.ConfigureHBPO_SE_DETAIL(options); + builder.ConfigureHBPO_SE_EDI(options); + builder.ConfigureHBPO_SE_REPORT(options); + builder.ConfigureHBPO_SE_SA_REPORT(options); + builder.ConfigureINVOICE_GRP(options); + builder.ConfigureINVOICE_MAP_GROUP(options); + builder.ConfigureINVOICE_NOT_SETTLE(options); + builder.ConfigureINVOICE_WAIT_DETAIL(options); + builder.ConfigureJIT_SE_SA_REPORT(options); + //builder.ConfigureM_PD_DETAIL(options); + builder.ConfigurePUB_CAN_SA(options); + builder.ConfigurePUB_CAN_SA_DETAIL(options); + builder.ConfigurePUB_NOT_SA_DETAIL(options); + builder.ConfigurePUB_PD_DETAIL(options); + builder.ConfigurePUB_SA(options); + builder.ConfigurePUB_SA_DETAIL(options); + builder.ConfigurePUB_SE_DETAIL(options); + + + + + + + //大众发票导入 - builder.ConfigureInvoice(options); - builder.ConfigureInvoiceVersion(options); + //builder.ConfigureInvoice(options); + //builder.ConfigureInvoiceVersion(options); - //大众准时化结算明细导入-已结 - builder.ConfigureSettleAccount(options); - builder.ConfigureSettleAccountVersion(options); + ////大众准时化结算明细导入-已结 + //builder.ConfigureSettleAccount(options); + //builder.ConfigureSettleAccountVersion(options); - //红旗主机场-未结明细-导入 - builder.ConfigureUnHQSettleAccount(options); - builder.ConfigureUnHQSettleAccountVersion(options); + ////红旗主机场-未结明细-导入 + //builder.ConfigureUnHQSettleAccount(options); + //builder.ConfigureUnHQSettleAccountVersion(options); - builder.ConfigureWmsDetailReport(options); - builder.ConfigureWmsDetailDiffReport(options); - builder.ConfigureWmsDetailCancelReport(options); + //builder.ConfigureWmsDetailReport(options); + //builder.ConfigureWmsDetailDiffReport(options); + //builder.ConfigureWmsDetailCancelReport(options); //有条码 - builder.ConfigureWmsDetailWithCodeReport(options); + //builder.ConfigureWmsDetailWithCodeReport(options); builder.ConfigureErrorBill(options); @@ -509,6 +550,650 @@ namespace Win.Sfs.SettleAccount b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); }); } + + + private static void ConfigureBBAC_NOT_SA_DETAIL(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_BBAC_NOT_SA_DETAIL", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.Site).HasMaxLength(50); + b.Property(x => x.Category).HasMaxLength(50); + b.Property(x => x.IsReturn).HasMaxLength(50); + b.Property(x => x.SettleBillNum).HasMaxLength(50); + b.Property(x => x.InvGroupNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.GroupNum).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + private static void ConfigureBBAC_SA(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_BBAC_SA", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.BillNum).HasMaxLength(50); + b.Property(x => x.DNBillNum).HasMaxLength(50); + b.Property(x => x.State).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + private static void ConfigureBBAC_SA_DETAIL(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_BBAC_SA_DETAIL", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.Site).HasMaxLength(50); + b.Property(x => x.Category).HasMaxLength(50); + b.Property(x => x.IsReturn).HasMaxLength(50); + b.Property(x => x.BillNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.GroupNum).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + private static void ConfigureBBAC_SE_DETAIL(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_BBAC_SE_DETAIL", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.SeqNumber).HasMaxLength(50); + b.Property(x => x.AssemblyCode).HasMaxLength(50); + b.Property(x => x.InjectionCode).HasMaxLength(50); + b.Property(x => x.WmsBillNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + + private static void ConfigureBBAC_SE_EDI(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_BBAC_SE_EDI", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.SeqNumber).HasMaxLength(50); + b.Property(x => x.AssemblyCode).HasMaxLength(50); + b.Property(x => x.InjectionCode).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + + private static void ConfigureBBAC_SE_REPORT(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_BBAC_SE_REPORT", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.SeqNumber).HasMaxLength(50); + b.Property(x => x.AssemblyCode).HasMaxLength(50); + b.Property(x => x.InjectionCode).HasMaxLength(50); + b.Property(x => x.WmsBillNum).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + private static void ConfigureBBAC_SE_SA_REPORT(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_BBAC_SE_SA_REPORT", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.Category).HasMaxLength(50); + b.Property(x => x.WmsBillNum).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.SeqNumber).HasMaxLength(50); + b.Property(x => x.PJISSeqNumber).HasMaxLength(50); + b.Property(x => x.MaterialNumber).HasMaxLength(50); + b.Property(x => x.MaterialDes).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.AssemblyCode).HasMaxLength(50); + b.Property(x => x.InjectionCode).HasMaxLength(50); + b.Property(x => x.MateType).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + private static void ConfigureHBPO_CAN_SA(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_HBPO_CAN_SA", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.SettleBillNum).HasMaxLength(50); + b.Property(x => x.BillNum).HasMaxLength(50); + b.Property(x => x.State).HasMaxLength(50); + b.Property(x => x.InvGroupNum).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + + private static void ConfigureHBPO_CAN_SA_DETAIL(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_HBPO_CAN_SA_DETAIL", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.SettleBillNum).HasMaxLength(50); + b.Property(x => x.Site).HasMaxLength(50); + b.Property(x => x.BillNum).HasMaxLength(50); + b.Property(x => x.InvGroupNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.GroupNum).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + + private static void ConfigureHBPO_NOT_SA_DETAIL(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_HBPO_NOT_SA_DETAIL", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.Site).HasMaxLength(50); + b.Property(x => x.SettleBillNum).HasMaxLength(50); + b.Property(x => x.InvGroupNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.GroupNum).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + private static void ConfigureHBPO_PD_DETAIL(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_HBPO_PD_DETAIL", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.Site).HasMaxLength(50); + b.Property(x => x.BillNum).HasMaxLength(50); + b.Property(x => x.InvGroupNum).HasMaxLength(50); + b.Property(x => x.GroupNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.RELU).HasMaxLength(50); + b.Property(x => x.REPN).HasMaxLength(50); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + private static void ConfigureHBPO_SA(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_HBPO_SA", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.BillNum).HasMaxLength(50); + b.Property(x => x.DNBillNum).HasMaxLength(50); + b.Property(x => x.State).HasMaxLength(50); + b.Property(x => x.RecordCount).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + + private static void ConfigureHBPO_SA_DETAIL(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_HBPO_SA_DETAIL", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.Site).HasMaxLength(50); + b.Property(x => x.InvGroupNum).HasMaxLength(50); + b.Property(x => x.BillNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.GroupNum).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + private static void ConfigureHBPO_SE_DETAIL(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_HBPO_SE_DETAIL", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.SeqNumber).HasMaxLength(50); + b.Property(x => x.AssemblyCode).HasMaxLength(50); + b.Property(x => x.InjectionCode).HasMaxLength(50); + b.Property(x => x.WmsBillNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + private static void ConfigureHBPO_SE_EDI(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_HBPO_SE_EDI", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.SeqNumber).HasMaxLength(50); + b.Property(x => x.AssemblyCode).HasMaxLength(50); + b.Property(x => x.InjectionCode).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + + private static void ConfigureHBPO_SE_REPORT(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_HBPO_SE_REPORT", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.SeqNumber).HasMaxLength(50); + b.Property(x => x.AssemblyCode).HasMaxLength(50); + b.Property(x => x.InjectionCode).HasMaxLength(50); + b.Property(x => x.WmsBillNum).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + + + private static void ConfigureHBPO_SE_SA_REPORT(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_HBPO_SE_SA_REPORT", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.Category).HasMaxLength(50); + b.Property(x => x.SeqNumber).HasMaxLength(50); + b.Property(x => x.PJISSeqNumber).HasMaxLength(50); + b.Property(x => x.MaterialNumber).HasMaxLength(50); + b.Property(x => x.MaterialDes).HasMaxLength(50); + b.Property(x => x.AssemblyCode).HasMaxLength(50); + b.Property(x => x.InjectionCode).HasMaxLength(50); + b.Property(x => x.MateType).HasMaxLength(50); + b.Property(x => x.WmsBillNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + + + private static void ConfigureINVOICE_GRP(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_INVOICE_GRP", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.RealnvBillNum).HasMaxLength(50); + b.Property(x => x.InvbillNum).HasMaxLength(50); + b.Property(x => x.InvGroupNum).HasMaxLength(50); + b.Property(x => x.FileName).HasMaxLength(50); + b.Property(x => x.BusinessType).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + private static void ConfigureINVOICE_MAP_GROUP(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_INVOICE_MAP_GROUP", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.InvbillNum).HasMaxLength(50); + b.Property(x => x.InvGroupNum).HasMaxLength(50); + b.Property(x => x.SettleGroupNum).HasMaxLength(50); + b.Property(x => x.Extend1).HasMaxLength(50); + b.Property(x => x.Extend2).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + private static void ConfigureINVOICE_NOT_SETTLE(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_INVOICE_NOT_SETTLE", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.InvGroupNum).HasMaxLength(50); + b.Property(x => x.SettleGroupNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.LU1).HasMaxLength(50); + b.Property(x => x.Extend1).HasMaxLength(50); + b.Property(x => x.Extend2).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + + private static void ConfigureINVOICE_WAIT_DETAIL(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_INVOICE_WAIT_DETAIL", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.InvbillNum).HasMaxLength(50); + b.Property(x => x.InvGroupNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.BussiessType).HasMaxLength(50); + b.Property(x => x.Extend1).HasMaxLength(50); + b.Property(x => x.Extend2).HasMaxLength(50); + b.Property(x => x.Extend3).HasMaxLength(50); + b.Property(x => x.Extend4).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + + private static void ConfigureJIT_SE_SA_REPORT(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_JIT_SE_SA_REPORT", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.Category).HasMaxLength(50); + b.Property(x => x.SeqNumber).HasMaxLength(50); + b.Property(x => x.PJISSeqNumber).HasMaxLength(50); + b.Property(x => x.MaterialNumber).HasMaxLength(50); + b.Property(x => x.MaterialDes).HasMaxLength(50); + b.Property(x => x.AssemblyCode).HasMaxLength(50); + b.Property(x => x.InjectionCode).HasMaxLength(50); + b.Property(x => x.MateType).HasMaxLength(50); + b.Property(x => x.WmsBillNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + + private static void ConfigurePUB_CAN_SA(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_PUB_CAN_SA", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.SettleBillNum).HasMaxLength(50); + b.Property(x => x.BillNum).HasMaxLength(50); + b.Property(x => x.BusinessType).HasMaxLength(50); + b.Property(x => x.InvGroupNum).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + + + private static void ConfigurePUB_CAN_SA_DETAIL(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_PUB_CAN_SA_DETAIL", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.SettleBillNum).HasMaxLength(50); + b.Property(x => x.Site).HasMaxLength(50); + b.Property(x => x.BusinessType).HasMaxLength(50); + b.Property(x => x.BillNum).HasMaxLength(50); + b.Property(x => x.InvGroupNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.GroupNum).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + + + private static void ConfigurePUB_NOT_SA_DETAIL(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_PUB_NOT_SA_DETAIL", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.Site).HasMaxLength(50); + b.Property(x => x.Extend1).HasMaxLength(50); + b.Property(x => x.Extend2).HasMaxLength(50); + b.Property(x => x.Extend3).HasMaxLength(50); + b.Property(x => x.BusinessType).HasMaxLength(50); + b.Property(x => x.SettleBillNum).HasMaxLength(50); + b.Property(x => x.InvGroupNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.GroupNum).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + private static void ConfigurePUB_PD_DETAIL(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_PUB_PD_DETAIL", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.Site).HasMaxLength(50); + b.Property(x => x.BusinessType).HasMaxLength(50); + b.Property(x => x.BillNum).HasMaxLength(50); + b.Property(x => x.InvGroupNum).HasMaxLength(50); + b.Property(x => x.GroupNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.RELU).HasMaxLength(50); + b.Property(x => x.REPN).HasMaxLength(50); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + private static void ConfigurePUB_SA(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_PUB_SA", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.BillNum).HasMaxLength(50); + b.Property(x => x.State).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + private static void ConfigurePUB_SA_DETAIL(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_PUB_SA_DETAIL", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.Site).HasMaxLength(50); + b.Property(x => x.Extend1).HasMaxLength(50); + b.Property(x => x.Extend2).HasMaxLength(50); + b.Property(x => x.Extend3).HasMaxLength(50); + b.Property(x => x.BillNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.GroupNum).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + private static void ConfigurePUB_SE_DETAIL(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_PUB_SE_DETAIL", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.Extend1).HasMaxLength(50); + b.Property(x => x.Extend2).HasMaxLength(50); + b.Property(x => x.Extend3).HasMaxLength(50); + b.Property(x => x.BusinessType).HasMaxLength(50); + b.Property(x => x.WmsBillNum).HasMaxLength(50); + b.Property(x => x.LU).HasMaxLength(50); + b.Property(x => x.PN).HasMaxLength(50); + b.Property(x => x.KeyCode).HasMaxLength(50); + b.Property(x => x.ConcurrencyStamp).HasMaxLength(50); + }); + } + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 220dc30c1af2a49ef54245146aa5199157c60a40 Mon Sep 17 00:00:00 2001 From: mahao Date: Mon, 10 Jul 2023 11:22:21 +0800 Subject: [PATCH 06/14] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 7657db0b..10f76b66 100644 --- a/.gitignore +++ b/.gitignore @@ -14,4 +14,5 @@ obj/ *.db *.db-shm *.db-wal - +/code/src/Shared/*/obj +/code/src/Shared/*/bin \ No newline at end of file From b7591f8ead378f0a2a36b9b552ccfce83bf08a01 Mon Sep 17 00:00:00 2001 From: mahao Date: Mon, 10 Jul 2023 11:36:10 +0800 Subject: [PATCH 07/14] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../netcoreapp5/Win.Abp.Snowflakes.deps.json | 940 -- .../Debug/netcoreapp5/Win.Abp.Snowflakes.dll | Bin 7680 -> 0 bytes .../Debug/netcoreapp5/Win.Abp.Snowflakes.pdb | Bin 13260 -> 0 bytes .../netcoreapp5/ref/Win.Abp.Snowflakes.dll | Bin 5631 -> 0 bytes .../netcoreapp5/Win.Abp.Snowflakes.deps.json | 940 -- .../netcoreapp5/Win.Abp.Snowflakes.dll | Bin 7680 -> 0 bytes .../netcoreapp5/Win.Abp.Snowflakes.pdb | Bin 13000 -> 0 bytes .../netcoreapp5/ref/Win.Abp.Snowflakes.dll | Bin 5631 -> 0 bytes ...CoreApp,Version=v5.0.AssemblyAttributes.cs | 4 - .../Win.Abp.Snowflakes.AssemblyInfo.cs | 20 - ...in.Abp.Snowflakes.AssemblyInfoInputs.cache | 1 - ....GeneratedMSBuildEditorConfig.editorconfig | 11 - .../Win.Abp.Snowflakes.assets.cache | Bin 28412 -> 0 bytes ....Snowflakes.csproj.AssemblyReference.cache | Bin 105262 -> 0 bytes ...p.Snowflakes.csproj.BuildWithSkipAnalyzers | 0 ....Snowflakes.csproj.CoreCompileInputs.cache | 1 - ...Abp.Snowflakes.csproj.FileListAbsolute.txt | 72 - ...p.Snowflakes.csprojAssemblyReference.cache | Bin 126220 -> 0 bytes .../Debug/netcoreapp5/Win.Abp.Snowflakes.dll | Bin 7680 -> 0 bytes .../Debug/netcoreapp5/Win.Abp.Snowflakes.pdb | Bin 13260 -> 0 bytes .../netcoreapp5/ref/Win.Abp.Snowflakes.dll | Bin 5632 -> 0 bytes .../netcoreapp5/refint/Win.Abp.Snowflakes.dll | Bin 5632 -> 0 bytes ...CoreApp,Version=v5.0.AssemblyAttributes.cs | 4 - .../Win.Abp.Snowflakes.AssemblyInfo.cs | 20 - ...in.Abp.Snowflakes.AssemblyInfoInputs.cache | 1 - ....GeneratedMSBuildEditorConfig.editorconfig | 15 - .../Win.Abp.Snowflakes.assets.cache | Bin 28388 -> 0 bytes ....Snowflakes.csproj.AssemblyReference.cache | Bin 105262 -> 0 bytes ....Snowflakes.csproj.CoreCompileInputs.cache | 5 - ...Abp.Snowflakes.csproj.FileListAbsolute.txt | 51 - .../netcoreapp5/Win.Abp.Snowflakes.dll | Bin 7680 -> 0 bytes .../netcoreapp5/Win.Abp.Snowflakes.pdb | Bin 13000 -> 0 bytes .../netcoreapp5/ref/Win.Abp.Snowflakes.dll | Bin 5632 -> 0 bytes ...in.Abp.Snowflakes.csproj.nuget.dgspec.json | 88 - .../Win.Abp.Snowflakes.csproj.nuget.g.props | 16 - .../Win.Abp.Snowflakes.csproj.nuget.g.targets | 2 - .../obj/project.assets.json | 3119 ----- .../obj/project.nuget.cache | 71 - .../bin/Debug/Win.Sfs.Shared.2.0.0.nupkg | Bin 32597 -> 0 bytes .../netcoreapp5/Win.Sfs.Shared.deps.json | 3660 ------ .../bin/Debug/netcoreapp5/Win.Sfs.Shared.dll | Bin 73728 -> 0 bytes .../bin/Debug/netcoreapp5/Win.Sfs.Shared.pdb | Bin 48512 -> 0 bytes .../bin/Debug/netcoreapp5/Win.Utils.dll | Bin 10752 -> 0 bytes .../bin/Debug/netcoreapp5/Win.Utils.pdb | Bin 21764 -> 0 bytes .../Debug/netcoreapp5/ref/Win.Sfs.Shared.dll | Bin 42495 -> 0 bytes .../bin/Release/Win.Sfs.Shared.2.0.0.nupkg | Bin 31206 -> 0 bytes .../netcoreapp5/Win.Sfs.Shared.deps.json | 3660 ------ .../Release/netcoreapp5/Win.Sfs.Shared.dll | Bin 70144 -> 0 bytes .../Release/netcoreapp5/Win.Sfs.Shared.pdb | Bin 46132 -> 0 bytes .../bin/Release/netcoreapp5/Win.Utils.dll | Bin 10240 -> 0 bytes .../bin/Release/netcoreapp5/Win.Utils.pdb | Bin 21336 -> 0 bytes .../netcoreapp5/ref/Win.Sfs.Shared.dll | Bin 42495 -> 0 bytes .../obj/Debug/Win.Sfs.Shared.2.0.0.nuspec | 23 - ...CoreApp,Version=v5.0.AssemblyAttributes.cs | 4 - .../Win.Sfs.Shared.AssemblyInfo.cs | 23 - .../Win.Sfs.Shared.AssemblyInfoInputs.cache | 1 - ....GeneratedMSBuildEditorConfig.editorconfig | 11 - .../netcoreapp5/Win.Sfs.Shared.assets.cache | Bin 137770 -> 0 bytes ....Sfs.Shared.csproj.AssemblyReference.cache | Bin 202456 -> 0 bytes ...n.Sfs.Shared.csproj.BuildWithSkipAnalyzers | 0 .../Win.Sfs.Shared.csproj.CopyComplete | 0 ....Sfs.Shared.csproj.CoreCompileInputs.cache | 1 - ...Win.Sfs.Shared.csproj.FileListAbsolute.txt | 90 - ...n.Sfs.Shared.csprojAssemblyReference.cache | Bin 22213 -> 0 bytes .../obj/Debug/netcoreapp5/Win.Sfs.Shared.dll | Bin 73728 -> 0 bytes .../obj/Debug/netcoreapp5/Win.Sfs.Shared.pdb | Bin 48512 -> 0 bytes .../Debug/netcoreapp5/ref/Win.Sfs.Shared.dll | Bin 42496 -> 0 bytes .../netcoreapp5/refint/Win.Sfs.Shared.dll | Bin 42496 -> 0 bytes .../obj/Release/Win.Sfs.Shared.2.0.0.nuspec | 27 - ...CoreApp,Version=v5.0.AssemblyAttributes.cs | 4 - .../Win.Sfs.Shared.AssemblyInfo.cs | 23 - .../Win.Sfs.Shared.AssemblyInfoInputs.cache | 1 - ....GeneratedMSBuildEditorConfig.editorconfig | 15 - .../netcoreapp5/Win.Sfs.Shared.assets.cache | Bin 138041 -> 0 bytes ....Sfs.Shared.csproj.AssemblyReference.cache | Bin 202484 -> 0 bytes .../Win.Sfs.Shared.csproj.CopyComplete | 0 ....Sfs.Shared.csproj.CoreCompileInputs.cache | 5 - ...Win.Sfs.Shared.csproj.FileListAbsolute.txt | 63 - .../Release/netcoreapp5/Win.Sfs.Shared.dll | Bin 70144 -> 0 bytes .../Release/netcoreapp5/Win.Sfs.Shared.pdb | Bin 46132 -> 0 bytes .../netcoreapp5/ref/Win.Sfs.Shared.dll | Bin 42496 -> 0 bytes .../Win.Sfs.Shared.csproj.nuget.dgspec.json | 194 - .../obj/Win.Sfs.Shared.csproj.nuget.g.props | 24 - .../obj/Win.Sfs.Shared.csproj.nuget.g.targets | 6 - .../Win.Sfs.Shared/obj/project.assets.json | 10562 ---------------- .../Win.Sfs.Shared/obj/project.nuget.cache | 242 - .../Win.Utils/bin/Debug/Win.Utils.2.0.0.nupkg | Bin 6543 -> 0 bytes .../bin/Debug/netcoreapp5/Win.Utils.deps.json | 253 - .../bin/Debug/netcoreapp5/Win.Utils.dll | Bin 10752 -> 0 bytes .../bin/Debug/netcoreapp5/Win.Utils.pdb | Bin 21764 -> 0 bytes .../bin/Debug/netcoreapp5/ref/Win.Utils.dll | Bin 7167 -> 0 bytes .../bin/Release/Win.Utils.2.0.0.nupkg | Bin 6315 -> 0 bytes .../Release/netcoreapp5/Win.Utils.deps.json | 253 - .../bin/Release/netcoreapp5/Win.Utils.dll | Bin 10240 -> 0 bytes .../bin/Release/netcoreapp5/Win.Utils.pdb | Bin 21336 -> 0 bytes .../bin/Release/netcoreapp5/ref/Win.Utils.dll | Bin 7167 -> 0 bytes .../obj/Debug/Win.Utils.2.0.0.nuspec | 18 - ...CoreApp,Version=v5.0.AssemblyAttributes.cs | 4 - .../netcoreapp5/Win.Utils.AssemblyInfo.cs | 23 - .../Win.Utils.AssemblyInfoInputs.cache | 1 - ....GeneratedMSBuildEditorConfig.editorconfig | 11 - .../Debug/netcoreapp5/Win.Utils.assets.cache | Bin 11670 -> 0 bytes .../Win.Utils.csproj.AssemblyReference.cache | Bin 177441 -> 0 bytes .../Win.Utils.csproj.BuildWithSkipAnalyzers | 0 .../Win.Utils.csproj.CoreCompileInputs.cache | 1 - .../Win.Utils.csproj.FileListAbsolute.txt | 72 - .../Win.Utils.csprojAssemblyReference.cache | Bin 424 -> 0 bytes .../obj/Debug/netcoreapp5/Win.Utils.dll | Bin 10752 -> 0 bytes .../obj/Debug/netcoreapp5/Win.Utils.pdb | Bin 21764 -> 0 bytes .../obj/Debug/netcoreapp5/ref/Win.Utils.dll | Bin 7168 -> 0 bytes .../Debug/netcoreapp5/refint/Win.Utils.dll | Bin 7168 -> 0 bytes .../obj/Release/Win.Utils.2.0.0.nuspec | 22 - ...CoreApp,Version=v5.0.AssemblyAttributes.cs | 4 - .../netcoreapp5/Win.Utils.AssemblyInfo.cs | 23 - .../Win.Utils.AssemblyInfoInputs.cache | 1 - ....GeneratedMSBuildEditorConfig.editorconfig | 15 - .../netcoreapp5/Win.Utils.assets.cache | Bin 11646 -> 0 bytes .../Win.Utils.csproj.AssemblyReference.cache | Bin 177441 -> 0 bytes .../Win.Utils.csproj.CoreCompileInputs.cache | 5 - .../Win.Utils.csproj.FileListAbsolute.txt | 51 - .../obj/Release/netcoreapp5/Win.Utils.dll | Bin 10240 -> 0 bytes .../obj/Release/netcoreapp5/Win.Utils.pdb | Bin 21336 -> 0 bytes .../obj/Release/netcoreapp5/ref/Win.Utils.dll | Bin 7168 -> 0 bytes .../obj/Win.Utils.csproj.nuget.dgspec.json | 91 - .../obj/Win.Utils.csproj.nuget.g.props | 16 - .../obj/Win.Utils.csproj.nuget.g.targets | 2 - .../Shared/Win.Utils/obj/project.assets.json | 712 -- .../Shared/Win.Utils/obj/project.nuget.cache | 30 - 128 files changed, 25628 deletions(-) delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.deps.json delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.dll delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.pdb delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.dll delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/Win.Abp.Snowflakes.deps.json delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/Win.Abp.Snowflakes.dll delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/Win.Abp.Snowflakes.pdb delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/ref/Win.Abp.Snowflakes.dll delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.assets.cache delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.AssemblyReference.cache delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.BuildWithSkipAnalyzers delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.FileListAbsolute.txt delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csprojAssemblyReference.cache delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.dll delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.pdb delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.dll delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/refint/Win.Abp.Snowflakes.dll delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.assets.cache delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.AssemblyReference.cache delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.FileListAbsolute.txt delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.dll delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.pdb delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/ref/Win.Abp.Snowflakes.dll delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.dgspec.json delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.props delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.targets delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/project.assets.json delete mode 100644 code/src/Shared/Win.Abp.Snowflakes/obj/project.nuget.cache delete mode 100644 code/src/Shared/Win.Sfs.Shared/bin/Debug/Win.Sfs.Shared.2.0.0.nupkg delete mode 100644 code/src/Shared/Win.Sfs.Shared/bin/Debug/netcoreapp5/Win.Sfs.Shared.deps.json delete mode 100644 code/src/Shared/Win.Sfs.Shared/bin/Debug/netcoreapp5/Win.Sfs.Shared.dll delete mode 100644 code/src/Shared/Win.Sfs.Shared/bin/Debug/netcoreapp5/Win.Sfs.Shared.pdb delete mode 100644 code/src/Shared/Win.Sfs.Shared/bin/Debug/netcoreapp5/Win.Utils.dll delete mode 100644 code/src/Shared/Win.Sfs.Shared/bin/Debug/netcoreapp5/Win.Utils.pdb delete mode 100644 code/src/Shared/Win.Sfs.Shared/bin/Debug/netcoreapp5/ref/Win.Sfs.Shared.dll delete mode 100644 code/src/Shared/Win.Sfs.Shared/bin/Release/Win.Sfs.Shared.2.0.0.nupkg delete mode 100644 code/src/Shared/Win.Sfs.Shared/bin/Release/netcoreapp5/Win.Sfs.Shared.deps.json delete mode 100644 code/src/Shared/Win.Sfs.Shared/bin/Release/netcoreapp5/Win.Sfs.Shared.dll delete mode 100644 code/src/Shared/Win.Sfs.Shared/bin/Release/netcoreapp5/Win.Sfs.Shared.pdb delete mode 100644 code/src/Shared/Win.Sfs.Shared/bin/Release/netcoreapp5/Win.Utils.dll delete mode 100644 code/src/Shared/Win.Sfs.Shared/bin/Release/netcoreapp5/Win.Utils.pdb delete mode 100644 code/src/Shared/Win.Sfs.Shared/bin/Release/netcoreapp5/ref/Win.Sfs.Shared.dll delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Debug/Win.Sfs.Shared.2.0.0.nuspec delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.AssemblyInfo.cs delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.AssemblyInfoInputs.cache delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.GeneratedMSBuildEditorConfig.editorconfig delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.assets.cache delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.csproj.AssemblyReference.cache delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.csproj.BuildWithSkipAnalyzers delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.csproj.CopyComplete delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.csproj.CoreCompileInputs.cache delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.csproj.FileListAbsolute.txt delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.csprojAssemblyReference.cache delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.dll delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.pdb delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/ref/Win.Sfs.Shared.dll delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/refint/Win.Sfs.Shared.dll delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Release/Win.Sfs.Shared.2.0.0.nuspec delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.AssemblyInfo.cs delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.AssemblyInfoInputs.cache delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.GeneratedMSBuildEditorConfig.editorconfig delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.assets.cache delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.csproj.AssemblyReference.cache delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.csproj.CopyComplete delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.csproj.CoreCompileInputs.cache delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.csproj.FileListAbsolute.txt delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.dll delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.pdb delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/ref/Win.Sfs.Shared.dll delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Win.Sfs.Shared.csproj.nuget.dgspec.json delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Win.Sfs.Shared.csproj.nuget.g.props delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/Win.Sfs.Shared.csproj.nuget.g.targets delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/project.assets.json delete mode 100644 code/src/Shared/Win.Sfs.Shared/obj/project.nuget.cache delete mode 100644 code/src/Shared/Win.Utils/bin/Debug/Win.Utils.2.0.0.nupkg delete mode 100644 code/src/Shared/Win.Utils/bin/Debug/netcoreapp5/Win.Utils.deps.json delete mode 100644 code/src/Shared/Win.Utils/bin/Debug/netcoreapp5/Win.Utils.dll delete mode 100644 code/src/Shared/Win.Utils/bin/Debug/netcoreapp5/Win.Utils.pdb delete mode 100644 code/src/Shared/Win.Utils/bin/Debug/netcoreapp5/ref/Win.Utils.dll delete mode 100644 code/src/Shared/Win.Utils/bin/Release/Win.Utils.2.0.0.nupkg delete mode 100644 code/src/Shared/Win.Utils/bin/Release/netcoreapp5/Win.Utils.deps.json delete mode 100644 code/src/Shared/Win.Utils/bin/Release/netcoreapp5/Win.Utils.dll delete mode 100644 code/src/Shared/Win.Utils/bin/Release/netcoreapp5/Win.Utils.pdb delete mode 100644 code/src/Shared/Win.Utils/bin/Release/netcoreapp5/ref/Win.Utils.dll delete mode 100644 code/src/Shared/Win.Utils/obj/Debug/Win.Utils.2.0.0.nuspec delete mode 100644 code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs delete mode 100644 code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.AssemblyInfo.cs delete mode 100644 code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.AssemblyInfoInputs.cache delete mode 100644 code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.GeneratedMSBuildEditorConfig.editorconfig delete mode 100644 code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.assets.cache delete mode 100644 code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.csproj.AssemblyReference.cache delete mode 100644 code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.csproj.BuildWithSkipAnalyzers delete mode 100644 code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.csproj.CoreCompileInputs.cache delete mode 100644 code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.csproj.FileListAbsolute.txt delete mode 100644 code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.csprojAssemblyReference.cache delete mode 100644 code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.dll delete mode 100644 code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.pdb delete mode 100644 code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/ref/Win.Utils.dll delete mode 100644 code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/refint/Win.Utils.dll delete mode 100644 code/src/Shared/Win.Utils/obj/Release/Win.Utils.2.0.0.nuspec delete mode 100644 code/src/Shared/Win.Utils/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs delete mode 100644 code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.AssemblyInfo.cs delete mode 100644 code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.AssemblyInfoInputs.cache delete mode 100644 code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.GeneratedMSBuildEditorConfig.editorconfig delete mode 100644 code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.assets.cache delete mode 100644 code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.csproj.AssemblyReference.cache delete mode 100644 code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.csproj.CoreCompileInputs.cache delete mode 100644 code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.csproj.FileListAbsolute.txt delete mode 100644 code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.dll delete mode 100644 code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.pdb delete mode 100644 code/src/Shared/Win.Utils/obj/Release/netcoreapp5/ref/Win.Utils.dll delete mode 100644 code/src/Shared/Win.Utils/obj/Win.Utils.csproj.nuget.dgspec.json delete mode 100644 code/src/Shared/Win.Utils/obj/Win.Utils.csproj.nuget.g.props delete mode 100644 code/src/Shared/Win.Utils/obj/Win.Utils.csproj.nuget.g.targets delete mode 100644 code/src/Shared/Win.Utils/obj/project.assets.json delete mode 100644 code/src/Shared/Win.Utils/obj/project.nuget.cache diff --git a/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.deps.json b/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.deps.json deleted file mode 100644 index 611c11ff..00000000 --- a/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.deps.json +++ /dev/null @@ -1,940 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v5.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v5.0": { - "Win.Abp.Snowflakes/1.0.0": { - "dependencies": { - "Volo.Abp.Core": "4.0.0" - }, - "runtime": { - "Win.Abp.Snowflakes.dll": {} - } - }, - "JetBrains.Annotations/2020.1.0": { - "runtime": { - "lib/netstandard2.0/JetBrains.Annotations.dll": { - "assemblyVersion": "2020.1.0.0", - "fileVersion": "2020.1.0.0" - } - } - }, - "Microsoft.Extensions.Configuration/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Configuration.CommandLine/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "5.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "5.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "5.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", - "Microsoft.Extensions.FileProviders.Physical": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Configuration.Json/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "5.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.Configuration.Json": "5.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", - "Microsoft.Extensions.FileProviders.Physical": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.DependencyInjection/5.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.FileProviders.Physical/5.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.FileSystemGlobbing/5.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Hosting.Abstractions/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Localization/5.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Localization.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0" - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.Localization.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.52605" - } - } - }, - "Microsoft.Extensions.Localization.Abstractions/5.0.0": { - "runtime": { - "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.52605" - } - } - }, - "Microsoft.Extensions.Logging/5.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Options/5.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.Configuration.Binder": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Primitives/5.0.0": { - "runtime": { - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Nito.AsyncEx.Context/5.0.0": { - "dependencies": { - "Nito.AsyncEx.Tasks": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Context.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Nito.AsyncEx.Coordination/5.0.0": { - "dependencies": { - "Nito.AsyncEx.Tasks": "5.0.0", - "Nito.Collections.Deque": "1.0.4", - "Nito.Disposables": "2.0.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Nito.AsyncEx.Tasks/5.0.0": { - "dependencies": { - "Nito.Disposables": "2.0.0" - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Nito.Collections.Deque/1.0.4": { - "runtime": { - "lib/netstandard2.0/Nito.Collections.Deque.dll": { - "assemblyVersion": "1.0.4.0", - "fileVersion": "1.0.4.0" - } - } - }, - "Nito.Disposables/2.0.0": { - "dependencies": { - "System.Collections.Immutable": "1.7.1" - }, - "runtime": { - "lib/netstandard2.0/Nito.Disposables.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Immutable/1.7.1": {}, - "System.ComponentModel.Annotations/4.7.0": {}, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Dynamic.Core/1.1.5": { - "runtime": { - "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": { - "assemblyVersion": "1.1.5.0", - "fileVersion": "1.1.5.0" - } - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Linq.Queryable/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Loader/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "Volo.Abp.Core/4.0.0": { - "dependencies": { - "JetBrains.Annotations": "2020.1.0", - "Microsoft.Extensions.Configuration.CommandLine": "5.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0", - "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0", - "Microsoft.Extensions.DependencyInjection": "5.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "5.0.0", - "Microsoft.Extensions.Localization": "5.0.0", - "Microsoft.Extensions.Logging": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0", - "Nito.AsyncEx.Context": "5.0.0", - "Nito.AsyncEx.Coordination": "5.0.0", - "System.Collections.Immutable": "1.7.1", - "System.ComponentModel.Annotations": "4.7.0", - "System.Linq.Dynamic.Core": "1.1.5", - "System.Linq.Queryable": "4.3.0", - "System.Runtime.Loader": "4.3.0" - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.0.0" - } - } - } - } - }, - "libraries": { - "Win.Abp.Snowflakes/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "JetBrains.Annotations/2020.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==", - "path": "jetbrains.annotations/2020.1.0", - "hashPath": "jetbrains.annotations.2020.1.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==", - "path": "microsoft.extensions.configuration/5.0.0", - "hashPath": "microsoft.extensions.configuration.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", - "path": "microsoft.extensions.configuration.abstractions/5.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==", - "path": "microsoft.extensions.configuration.binder/5.0.0", - "hashPath": "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.CommandLine/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==", - "path": "microsoft.extensions.configuration.commandline/5.0.0", - "hashPath": "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==", - "path": "microsoft.extensions.configuration.environmentvariables/5.0.0", - "hashPath": "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==", - "path": "microsoft.extensions.configuration.fileextensions/5.0.0", - "hashPath": "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Json/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==", - "path": "microsoft.extensions.configuration.json/5.0.0", - "hashPath": "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==", - "path": "microsoft.extensions.configuration.usersecrets/5.0.0", - "hashPath": "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==", - "path": "microsoft.extensions.dependencyinjection/5.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", - "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==", - "path": "microsoft.extensions.fileproviders.abstractions/5.0.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Physical/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==", - "path": "microsoft.extensions.fileproviders.physical/5.0.0", - "hashPath": "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileSystemGlobbing/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==", - "path": "microsoft.extensions.filesystemglobbing/5.0.0", - "hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==", - "path": "microsoft.extensions.hosting.abstractions/5.0.0", - "hashPath": "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Localization/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PJ2TouziI0zcgiq2VapjNFkMsT05rZUfq0i6sY+59Ri6Mn9W7okJ1U5/CvetFDUAN0DHrXOTaaMSt5epUn6rQQ==", - "path": "microsoft.extensions.localization/5.0.0", - "hashPath": "microsoft.extensions.localization.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Localization.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Uey8VI3FbPFLiLh+mnFN13DTbQASSuzV3ZeN9Oma2Y4YW7OBWjU9LAsvPISRBQHrwztXegSoCacFWqB9o992xQ==", - "path": "microsoft.extensions.localization.abstractions/5.0.0", - "hashPath": "microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", - "path": "microsoft.extensions.logging/5.0.0", - "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", - "path": "microsoft.extensions.logging.abstractions/5.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", - "path": "microsoft.extensions.options/5.0.0", - "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==", - "path": "microsoft.extensions.options.configurationextensions/5.0.0", - "hashPath": "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", - "path": "microsoft.extensions.primitives/5.0.0", - "hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Nito.AsyncEx.Context/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==", - "path": "nito.asyncex.context/5.0.0", - "hashPath": "nito.asyncex.context.5.0.0.nupkg.sha512" - }, - "Nito.AsyncEx.Coordination/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==", - "path": "nito.asyncex.coordination/5.0.0", - "hashPath": "nito.asyncex.coordination.5.0.0.nupkg.sha512" - }, - "Nito.AsyncEx.Tasks/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==", - "path": "nito.asyncex.tasks/5.0.0", - "hashPath": "nito.asyncex.tasks.5.0.0.nupkg.sha512" - }, - "Nito.Collections.Deque/1.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==", - "path": "nito.collections.deque/1.0.4", - "hashPath": "nito.collections.deque.1.0.4.nupkg.sha512" - }, - "Nito.Disposables/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==", - "path": "nito.disposables/2.0.0", - "hashPath": "nito.disposables.2.0.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/1.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==", - "path": "system.collections.immutable/1.7.1", - "hashPath": "system.collections.immutable.1.7.1.nupkg.sha512" - }, - "System.ComponentModel.Annotations/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==", - "path": "system.componentmodel.annotations/4.7.0", - "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Dynamic.Core/1.1.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VxPRhLUvdALtBE6vdO83LxjSc3RQ9CPYwLofqKg3BkOxgz8xb4Z4vr/YhoSQ5NGHR7m6yhMDzUNUWUEeSTCHmA==", - "path": "system.linq.dynamic.core/1.1.5", - "hashPath": "system.linq.dynamic.core.1.1.5.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Linq.Queryable/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==", - "path": "system.linq.queryable/4.3.0", - "hashPath": "system.linq.queryable.4.3.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Loader/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==", - "path": "system.runtime.loader/4.3.0", - "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "Volo.Abp.Core/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZMfrx0XAQB8hkQDr7yK7z+p9m48VmKxpEH0/B2k8QNK9/D+2CGa4pBJtwJfQocgm2lltI25NapgcIr5GG8bQJA==", - "path": "volo.abp.core/4.0.0", - "hashPath": "volo.abp.core.4.0.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/Win.Abp.Snowflakes.dll deleted file mode 100644 index a5c3a589b2710907d9701992ff0b561eccaf25ea..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7680 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 p<>hn5M$AcMF^>%Yz75y!|Kpq$KwztP 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 diff --git a/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp.Snowflakes/bin/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.dll deleted file mode 100644 index 2ded0aecc82549a3092b9c814e611fdad600f161..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5631 zcmeHLONj&{nqwDBIz3QojVKalnSM3sDM8s(99aiPP)-xiRg;s;z5k|&{?!sP2n;}{XW&wIn zbqF8ANH;@QN(s=MLZcbg39Af3g{A{x-_0a|qos-V8G)P%fd7~X8LB4Tz}uRR=nc>J zO5mv+#(=ObWgO3_rD4+Wr0qhHbD|k^_PYYTt)=0&ja)z<;|kmw+VjB`^QWQr&aT@s zzV^_TIp4Fr3Qm{0i;c*zxKXkY%-eIl~J`^>~PBV}w&Z5`Oj z2I6D`uECkp{}$0%JWny64?N4M_^fdU`x|dx{m1ik7dUTY{X@rdSr#rrM{xc7Y`4fX z8n!SowEB`*%)~vhl~#rEF9R7z=kYuYdc-_t zzP5~RV0btEqBzGzFQkr;faew51DK>As1WO>9kC4f%ao>|4ETFv2elsTxqos9w3-2u z;9oD@qFHTolj@7jYA=G)=rVLBwOLLMQM2Y0D3&duqiMEqZp{Vw5e+Kg&~t6nIeMv$ z+5(x@)Z7DElcJAl2l9_>(y?|*c?fGmbR(V+tQoc&ah-Ox#wFsh3}!8~a#oFNP#ouh zrtG$0EAghkggDxyZVR>VKzDJTWkg1!c>kyM=P7}<-y6BW9Ex$6V$rnP`c z+N|&az+T81W)#dRXaaVVfm)UTpTwFpXdRsg?5B%>&(lYMTQNHZy+XeN?x#N}O@|;I zQ*cJXOCd)vKZfYysy>%#6!9Hba8v9J#H%T33{XQQ;z~0Pd>;6b&?hJKrktQnXk=>!kjnZs|{n!_%)kHz&UQ>=yYGM0DT z$#L5}Er+BdJu`5x1cfV-{a)I0SLz{jZcd{nzrm~+NmuWIsC zn0AL&7@?9LleRgfFu!Hxm>id$bV{-jTbn4%oGoBf(Xy>zx+R@3?YgA7MKU7y*m3EE z<*0Hs>+2h3+l~gbs+pBF>68(`bk2EGmN<*1Q8{i$oLtjNuH2j_GD?`OhIZC6D~{_2 zR>^O$qN&4-g|n2G-h@?>el$0T5>pMbGgLZal|0vX#{*+$sJ7s}^eEnI6il-oTDKRF^J9BBqmw1L^ByvL|tM@5#6O zW|J=`KKo{R$L8NYA6ul;%D(L)nSfX!7?Ff-4*)G+x|rF^cZ=mq?1qox!P+RGAb`dG4f-t(F$4t)+|Mc0p^5;lTpG8JSw`g=iJ* zp4e`rV5Mh8b7^NSzh;}$!&vFG6gCEMg5!rzGHh{*z%eFh`8+eCO40-me1g!2(S3sz zzGOVjSZ8b8OG3#>M4YwlBc|n0)h{7@sTL_q?>`G054!0zxWIXY3h*rhcQc}yxys>f z4%6SkXFZ@ldCK8Sdl+;M@Id(0P2Y9>{cm{sHBP|r zxi_-ICtjOb#mxc=ST)Im9Sdi-giVLW$yM@=IAQU{4yg&Q54lMJ^juJ3yV~^++z7-J zK+6KZGLNO7l}?Hpzim_mj-wU#1<};c!n==K1ly_2@pD31HgNAKLSn$1gBT_eCr5Nz zjpKMyc$ZuDM#1-Bu@&zC#-^H`{jY{TXB;S92i9zGO{#(>dKA9~l`)2I;zXNJVL^v6 zwxTTUN0c?1RvA_36uc1W=%dQ-NW|x=vERlFF!lfZr*N;vEf#iNL{&#E1NfR-g;os+ p_fxJ{1~u}bRYi4eM5{k!4A*a=&0B$V_`jgz;G&xo7UZGu;bu4tmB&B5OE~>nHlngg5FWEGN;qF`XE3b7rctQa>#;y=fKEdP$*ofARji zMQ<=?$mK`(Z+DSR^Y41Of&^3K#+*n$su|T(PgXoCH(Tt0}2-_mgB8^rQ?f z%0m}bMT-J~3z!RB2m}mFeZUY181W)QAYfE8qiFNDfo)lFkx2aj%R<~mA!*rcFS^d4iKReqC#5BQaYtkp#%nr5yq9ex}nC1QZsbMd=IQV$U}%kN>;*O0oL?= zs!&mdiaWE4tOSv$!oRH7lxx*e5@XhrpM}ecn4E-Btx1<_hLRY$wsdF6YF>s|p{Ugk zZBLv4GSn*+0_N#$LC550*viu8kJGIgYAOq~E0*d30-F_bEQzdXv4!;dz*k%haYtQE zzsRaq7w_+rd7xTd1!EjWU*+%h=rT>?AoOR;8YKM7w4EN9E1?j$Mj~_s{|a(fz?gKU zt|qHr22#}~Tx_@5r(V7oNx(elb0XCd?-`^niKk0<=K*|P(GZ7G7tdBK_97DHtK}q? z7d?q7D%FT_kVaiawlY*xrm2N#o1=yr>d6`|o==o8VwZ^@Z&Ytw%!|HM3;s2^=>x5S z>?Om-4V!L+1zK6#Nf0T%5QIrBqv6Q&Ur0zyqz1vrEQ`v9?O}BaS%)k zocr=pM)a7%I7)#|SLBFB-2&b!KcUW|Md+&0ujNCEMsLcsszyyE7kOfx*wcxsHehC1o|9D zk^#oX*K9gVZi+0PphhB1ktLvHIt-l~)h5KJP?^xY3Dgo$<)FSMJqx%NunGS!(M97w zQeFeRHu5ImVF9lu=2S@x?-HCB1$sWqxBMd^c(+M$+%Iw7blV@71Q6r<=uLOUqpjL|GXabD&@wn|X1N*r|=yP|KPKdeSjWf59|Dmto46bIC>DjY?9F9Dp53S!tIV4HwD05$3ou!1VI zdb&v9b7@$qN9>PB&Zh4O&BJuPdOm73s&h0ZQ|R?W~Z`jUJx;H^q8_#a6*`a19- z^nEDez#8Mbs6jgb_($amx}5%`UIqN9`c2Xi@9j9-%%!^l=L70^+V2NU0LJJvdJHg0 zPXI0xcq9E1(&h9U)NBX6D5da>bO6r5$uET!Vi>TVe88o27hp3z1b8m}Txu2iZ36ZQ zI4cv*TLo+ruus5wbOti((_T_AUlBko zcXTG^ZCt>(v=aC=#IRmw_+^#h!N>)YjJf4r3N9I|TSQoh058YdCt-Dp0K-kL0e}yO$EQHPtmxrXZS|ebo>c#ou!Nt zk5l*@R_J01f70_5HoQ-vbEQ749GzE;?SkRn-gYB9jBRzbW!jLOG>{n-N^H#_4boNW zeY#TG+%;-CS#!E%y;1Np)`(f~jgkCxaX6dP1a0}e>EsArP44|g3k0XK=txZK1ku)? z52}EGr5$(AfNcz$YfQ)V4Bz!aS>nK*aP1rRG_4>)A>C}+#$JIHCar|SV>O8SE!*V68(|N-oH{Y8c?e{$+%fp+TgHDr+0ChFihkQOnMm9E4$L3FrI*6?YyC|cUs&+|9YKfTi$@TV9EI1@QvZw~kYYt>%M=P42OxzP(3vtm*+ z{LO;PcZ;9h;O?QWjAvk&sDR1ZnXD(V4j3M4pLdv%92wYG4a$;94lt8EN?@ z=nLQ`s2`F94MJ*)9)X@uJB3by_ERGrfQBpj+t4cDN}z91qmd+YkB|@lcfFi3M!|JD zb>li6W8u-P#kG<~aIF-vt)u~QNjPnBd;Xp075|m0uFLOCUv}uH`z|CkAxSYMK~e-r zJkDfQG%C%DH%WR#KsA9gfi|!De5tx38da<3%DRq&MOD=T4F~E4vt^YeX@MTq^mvP| z1He+er4rrZEihMA1-g1m6?{~QZdFQD($%OGZ^KJiyd_3*ye-}mZ-GK(c_J#sM2qi; z-Em>>W$|b9m9g9J8#`yob4U7O#rJv~T=9vkPK*fW4}J+%@q$h&f3=J8rv+}BCgNAL zc#Ev*vKCV`j37aR8^b^Yae{OXlL6vNP<2Ha%fxsi2@F=p0CgS56~3itGBBVd(Ju+@ zn1s_NH=M8~%E&d_JR`rsbtYCTtgh~!f&@KrG@|n*nxERRD#IHOcE4reB76Ss6)Aj` z%2dsr*f~0_Lf$sUHee%(agPKv@a7zC!V5PpM1*sqAn=-w1KbP?1L0sFwmFY>ogk@u z6Gw3j_rv(E_%J?D6dNnz69%3IqJ8)_w~w<~()c~Sv~5mzrf*zx&8GdoJHFG zVQ(*E8=WhA-uU)IuU>!48;9?E?S>;guN=DWtglmX*aEPmNS)?#iG}PPmw+8orY)TdZv%E$L$~L!FFgG1+&L7{VXzTN=^oF#+x%BFDhwi!JCvQCwexT$*zr=WgvFWY&Av2Kl zVqQCKyW6lF8Yyrnrq~O^ekT^g%*m;oZu9?+!|x*E^YZxAp$A`@Q0vq9tjFJux3>~q z8$4Rf0?u=_mD1D;xQaFd>%y1z4WPRKR|j9+=|T0akAim`u3B!v|Ahe|-fK$C3T~&+ z+KTmsUAoCbXO;(dQI3zIn@I!ENI oP3)~EeD))XF+}*U`*8j~Z8K&7iQ%pLZzap@jC!9k|0gr>PrCCVY5)KL diff --git a/code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/Win.Abp.Snowflakes.pdb b/code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/Win.Abp.Snowflakes.pdb deleted file mode 100644 index 36e98a73b197beec236e41a8bd4a83cfc8d8fdef..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13000 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 diff --git a/code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/ref/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp.Snowflakes/bin/Release/netcoreapp5/ref/Win.Abp.Snowflakes.dll deleted file mode 100644 index 3b7b54fe1250044d89278e029580246c81dae76c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5631 zcmeHLO>7iZ9RI)FZo4c{TI9=UaIhEwb=;fTnLFq4tg;qF&<1XXf&dU7ox-qQ4b^@FyVwIVkE{B2l4lRGy74tA;cr;+rIz& zzuy1ry?O6V554*hMTw{b{q9|&OL%fiDR_S{3vu@o-*nR#ORjFXBo1EPkUwsETGe&R zu2Ip7hHX2(R*;%ovo+J!G9x*y;*_MmJh3sfe0YfHpy;4qUVHcNy0aVfq_$Kfi4x$% z1McMmc&5-bbfO;hj09mbgTq&C4lpF5H2yZL@?Y~AlFUM@!tMwo<3zV%udU4zEdw(T zy~o>x_hF$yenR1V`n*p@PmXV_9Osk_p0pvXDVEIRvLh2GLq@Y_Nzq7QKedbjos+?cpC_{mpu z7ydM_Pd~(|E~d6X1wINlC4NLGM)?#F>@{Km-3MVMR-L51xtI2e&;su>lUwzqK9C&f z-@z7QWC5_SIyeS0mZ zz%&}RFtLB_oLIud9Wg*_g7{Z}jG^;*9>!Z8>nsm(xK(n_m2sjiks$9*`b>Nr>7-i< zZV~TAR?rm;@1&m<=ZNTm)D{x(jDouX6ZAdhqn)%png)M`(iD^ie^2y4q#Jwg?;HZH zWq>63*F!(jwaDfM)f>GQc@9*B&O>J^a*dNi)T}uTie*dbaEdLQUUwFLM4gJ;^mGe# znx1c=wm=qXXzqrrLD7e_9r=egX|$D69)j8sU5Uj7YX z(xZS0+N|(?z#hmMrWMR8XaIJSj#?H0AHkZ`=`lJ3*hl98pP>%`2QWK2y-3#q2kAFT z(aVsID>$p*T)+{`k0QF5s?T{ELwrXR+!TEs@kW$13K&5pVoEaxd?~W+nB}}$8_zng z+K!III5jt+f&&~YUVy3+9Ra4J>Pl5RLw zmeM}h1db;A2d>9;)3g%-R!< zTQPVl4698mh)_vKrDaSj%xhX1l@rpHc2U-2YY_#RvjvPQn3n0!G^LYb?YH8Zj*?Ggf*$=YwoB4^PsDkrRvlWkbZmKyU!dJ(f#*Up$m z*>*hNEP8cTICYq@V3u;yoivNm3+Dz=VyZ#5hf0UcqU(6hgs%@x`_kshdwRIu)zYrx ztt+S{wz}8}UJ)88aB`H*y9SJ59XIoC)d=IUM>P^LAicdzcE>O7 zIrdiXwZseY3t!J{-~8*R<6Ro9?%gI5aflUy5eeva1JKH4OPIZKmsq(hrbQBoMAxQ3 zy<-!EaS?tPt>;4|A6awMHLAmoJv3dEDwF(i*O~IL)nbp~*1;RhHbLw3;h{Xg8R=^E z*>Dx?n%t%*VWoRjV`*nhuWA`H!&vFGOi))pPH_D2Nro*>5je&Ktz2M6l)DDF=M#k9 z5APeS@Hyit#@bu`UJ^)-A>xc>9WqRtDqa!cOSMQ@diN>VxYtd)!9~skRDf?8xSJ8p z&Q}g@bC~`%KI`!`zA{d9E?8>J0=^Y+jB<1ga0s`G9A)vPJq$VvxG(tXrf)m``ZqZJ z>L+0E+@q`n_rMmjikkrxuxgMCJ0{L<37a-ekfY=qal+z@9Z~~a4|0Qi=sBQ*cCq6h zxDklShn5L`c>zm5DV-$Me_N>l97ike3!H=`(F!v&e&JFHmq6T8dL#I^dNq9Dq#%Y#ECXx zj}UYaW6R3YAfl|&jLN7?$Ki!YLmyLqM?yYVjs4bVfT{oIKZ$!aZn3cIAgUT_>BHCj tDl}_AxSw*p(x{OKtqQ7ZAzJM|W4L~cZNUnpg8v15w|znBBJ&}yz<-Bhir4@E diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs deleted file mode 100644 index 3b1554c7..00000000 --- a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs deleted file mode 100644 index 2a1dc862..00000000 --- a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs +++ /dev/null @@ -1,20 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 -// -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyTitleAttribute("Win.Abp.Snowflakes")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// 由 MSBuild WriteCodeFragment 类生成。 - diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache deleted file mode 100644 index 5d9c2aaa..00000000 --- a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -dd45d7419542ed747e383f3acb2b9bf5ef266736 diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 795cd352..00000000 --- a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,11 +0,0 @@ -is_global = true -build_property.TargetFramework = netcoreapp5 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = -build_property.ProjectDir = D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\ diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.assets.cache b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.assets.cache deleted file mode 100644 index ba2c3186e9a275e8388f0a3d86b8c3c9dcac5ef0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 28412 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 diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.AssemblyReference.cache b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/Win.Abp.Snowflakes.csproj.AssemblyReference.cache deleted file mode 100644 index a5d377865ee6beaac0f9144056b7e3fd02c1086f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 105262 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 p<>hn5M$AcMF^>%Yz75y!|Kpq$KwztP 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 diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/ref/Win.Abp.Snowflakes.dll deleted file mode 100644 index 0c32d7d3380799fe788d42740ee3d75ade9ef221..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5632 zcmeHLO>7iZ9RI)BZo6Hew1|RHaj+Nxb=(RhpnUAoZObZcNp~s67~9$1*JWgOW-~L} z4-VRcdNCvtkL)`c97k%_e@3rlpiR0I{7fxHgUh~|F zXIAx+={Rnn7p3mi9o=&D>||cAx@Bo>*pS>2nLaT>bX;`NR}WqOw&Cq(dPH9*Qbb8` z5+V1SV|b>~b#$VB_0+<+nZfa^b`dZlVl?{(tMXs#8IjCFTZG+7MrMirguRZoOtc=% zm!S7xhwu)JbTf3NlmN{sG@4PJx5^+?XgUz~-An>FTAJvn5y-^=`1M4{P&MfW-qv(P zZ+N~}0#D^I3xsVc<9J3b4U>i^Z5N816D^~&-_7W4Ee*eIZv5M}0VI?=8rK9=hj*7?v?=$mzjg+w` zwP)x6TZoelxD|)a;HyNh<9V9#eBfD5#b=E_u)p#4HFz>le*))iY;f#kF3Z9m#E0Mp zkJ@gLX*6tMVr>zbNn08!$s&4EP(Brl1V?M`FjcKJ2-_ z!3NP528fV<{q#NE&~`Pcf!Gc0Nl+SHg3f|=gOj6PrMU=-W$Wlfnk~G!^&I?&29Wda8}u4Vl)|JPcWrqW5S&@{erNR6C_SgtZ~M8czt;4BOSXP6u1#67g6Dvld!; zU5#r{9Or0L_N!nk@ut6oIMJkj6>O8|N>EZ|9>Ob%lY(nOp90rND$W&*>_-azqj=SZ$Ee})1G3}+Z zGFPUG3}&)&&aB(PDc3tAJ@EWhcw;iSU2UPE-)19g24+b*!R>Zd@LRT4u*>aZaXrcu zYhk>MWO#TC;5F zMPp?-6JWn7)*;HuV!cw~Qnh#)-*y;QJ*c6Pz^km)Ecw~|xu)E|Y9Y3cc>cBe4s z%(-6GsBU)sOxr;lcPbh>w7pGYPkRtQEUq1y*Qo7VR-d($DYX?itr(4ny&wuW$$q_vco4{n_0!p0t#3)$%7pWXSak+hvvvt@*Ox~i3*UK;QEl86hO}f z6}HP=f5DAFOaZhk@GGlWx~_Cm)cEbCB5)k7xG#vNeiq(++#=XcZH1px%CdobM-dVO z-Wx=RbveHEyx6>msT; yY8k-S$||&KK)9cBy)vkg53MSyYa?3y4r91}Yi-pEq{IIOeYbyA=^FDcufV?;28dYz diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/refint/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp.Snowflakes/obj/Debug/netcoreapp5/refint/Win.Abp.Snowflakes.dll deleted file mode 100644 index 0c32d7d3380799fe788d42740ee3d75ade9ef221..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5632 zcmeHLO>7iZ9RI)BZo6Hew1|RHaj+Nxb=(RhpnUAoZObZcNp~s67~9$1*JWgOW-~L} z4-VRcdNCvtkL)`c97k%_e@3rlpiR0I{7fxHgUh~|F zXIAx+={Rnn7p3mi9o=&D>||cAx@Bo>*pS>2nLaT>bX;`NR}WqOw&Cq(dPH9*Qbb8` z5+V1SV|b>~b#$VB_0+<+nZfa^b`dZlVl?{(tMXs#8IjCFTZG+7MrMirguRZoOtc=% zm!S7xhwu)JbTf3NlmN{sG@4PJx5^+?XgUz~-An>FTAJvn5y-^=`1M4{P&MfW-qv(P zZ+N~}0#D^I3xsVc<9J3b4U>i^Z5N816D^~&-_7W4Ee*eIZv5M}0VI?=8rK9=hj*7?v?=$mzjg+w` zwP)x6TZoelxD|)a;HyNh<9V9#eBfD5#b=E_u)p#4HFz>le*))iY;f#kF3Z9m#E0Mp zkJ@gLX*6tMVr>zbNn08!$s&4EP(Brl1V?M`FjcKJ2-_ z!3NP528fV<{q#NE&~`Pcf!Gc0Nl+SHg3f|=gOj6PrMU=-W$Wlfnk~G!^&I?&29Wda8}u4Vl)|JPcWrqW5S&@{erNR6C_SgtZ~M8czt;4BOSXP6u1#67g6Dvld!; zU5#r{9Or0L_N!nk@ut6oIMJkj6>O8|N>EZ|9>Ob%lY(nOp90rND$W&*>_-azqj=SZ$Ee})1G3}+Z zGFPUG3}&)&&aB(PDc3tAJ@EWhcw;iSU2UPE-)19g24+b*!R>Zd@LRT4u*>aZaXrcu zYhk>MWO#TC;5F zMPp?-6JWn7)*;HuV!cw~Qnh#)-*y;QJ*c6Pz^km)Ecw~|xu)E|Y9Y3cc>cBe4s z%(-6GsBU)sOxr;lcPbh>w7pGYPkRtQEUq1y*Qo7VR-d($DYX?itr(4ny&wuW$$q_vco4{n_0!p0t#3)$%7pWXSak+hvvvt@*Ox~i3*UK;QEl86hO}f z6}HP=f5DAFOaZhk@GGlWx~_Cm)cEbCB5)k7xG#vNeiq(++#=XcZH1px%CdobM-dVO z-Wx=RbveHEyx6>msT; yY8k-S$||&KK)9cBy)vkg53MSyYa?3y4r91}Yi-pEq{IIOeYbyA=^FDcufV?;28dYz diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs deleted file mode 100644 index 3b1554c7..00000000 --- a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs deleted file mode 100644 index 2a1dc862..00000000 --- a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfo.cs +++ /dev/null @@ -1,20 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 -// -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyTitleAttribute("Win.Abp.Snowflakes")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// 由 MSBuild WriteCodeFragment 类生成。 - diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache deleted file mode 100644 index 5d9c2aaa..00000000 --- a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -dd45d7419542ed747e383f3acb2b9bf5ef266736 diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 57316494..00000000 --- a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,15 +0,0 @@ -is_global = true -build_property.TargetFramework = netcoreapp5 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = -<<<<<<< HEAD -build_property.ProjectDir = D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\ -======= -build_property.ProjectDir = D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\ ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.assets.cache b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.assets.cache deleted file mode 100644 index 55c5751afdd93da2ebea589b224bd6cb5c68d83f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 28388 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 E1I=8I>;M1& diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.AssemblyReference.cache b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.AssemblyReference.cache deleted file mode 100644 index 507cad31c384c32cebb59002f0997b74a95ed6b2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 105262 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 uaPId3?SQ*JL1}wn;FIGhudrb diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache deleted file mode 100644 index 9342f311..00000000 --- a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1,5 +0,0 @@ -<<<<<<< HEAD -490ed7a03a4d14bd9778d0cf635e6ea08e460be1 -======= -dabb1a5d47fc58eca331ebf17c1e39cf211ca0c0 ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.FileListAbsolute.txt b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.FileListAbsolute.txt deleted file mode 100644 index 9c6564a2..00000000 --- a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,51 +0,0 @@ -G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.deps.json -G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.dll -G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\ref\Win.Abp.Snowflakes.dll -G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.pdb -G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache -G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig -G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache -G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs -G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache -G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.dll -G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\ref\Win.Abp.Snowflakes.dll -G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.pdb -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.deps.json -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.dll -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\ref\Win.Abp.Snowflakes.dll -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.pdb -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.dll -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\ref\Win.Abp.Snowflakes.dll -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.pdb -<<<<<<< HEAD -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.deps.json -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.dll -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.pdb -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.dll -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\refint\Win.Abp.Snowflakes.dll -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.pdb -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\ref\Win.Abp.Snowflakes.dll -======= -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.deps.json -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.dll -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.pdb -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.dll -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\refint\Win.Abp.Snowflakes.dll -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.pdb -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\ref\Win.Abp.Snowflakes.dll ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.dll deleted file mode 100644 index 70ca939a91521209c7a0cdadd5c12229f4359673..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7680 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 diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.pdb b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/Win.Abp.Snowflakes.pdb deleted file mode 100644 index 36e98a73b197beec236e41a8bd4a83cfc8d8fdef..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13000 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 diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/ref/Win.Abp.Snowflakes.dll b/code/src/Shared/Win.Abp.Snowflakes/obj/Release/netcoreapp5/ref/Win.Abp.Snowflakes.dll deleted file mode 100644 index 0d55df577b22f8aacdc909c5011446eb029bfa3f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5632 zcmeHLONbUA2Zq6QO95aWd?2O<#<#FL3JhL}hK2TvTt@2~E8EVCiRBiWj* zzyDYLud1%9-b1gwLs25?K)-j7=pvrnQVKp8%s|}r)TJ)^dhxaO7sbJA>+{D=Ppi64 z*)=L!(XegD*9uZ|YqnRh*L4mn}C_gB1x10 zCmwLG?#DBQuAvikt7jyLn;9IxYO{bL5v8%WS(X2q&yZvm+7#>#GcrbW2lm?94AD|B zUx(h4ZNdjIQjO4+QXDj=P;Yu=!YqMMp=m(acOwblXepvSx-X}E;Md~;L)D}ccuUg| zz3zH$5j>T{7!bCljN=)$6in)_v>YgMPBeqgepjNmv=scdkPGM|T!B;Hee(Xu)#V31 zt9X5Xq@q7O!l^E#HctgU4>u)#L?}l26!tCbHDVs!hhZgFo}@jw1A9bhf%ln-t$I@5 zlHAg_oh`)30$htjr}q@mX*`cJp7UMPE_yU%f|ibO$(ZW4-&1WHT&Wg!m9# z?;gu3FpY*SOzc}TD;6_xS8SoxLHx@>#?W~@hN-QNb(V!V+$uTe$~e*HNRW3YeI-7P zbkZ#aH;Z>8%jpW-bkZ-1b3}AQY6}T?R>56>3Hp)p(N5}*romsXGzF!>-yPi_>B64- z7il8SQ~BfHVJqeAB} zcRhfe^f+LGHYvOhup4rQX$7+i8i1Xoqn1U$$FL@KdVy#W^a`Y73eG4v8*l{kqlhl1>T{k(5#JF7H%8w;yb&dh0!C1Yn9_^^UxI8qW;n0b z#DV679fzD!&62w)Z5!6~ zNtrECS^CE^a@?p{{!zz0Azkpid3gJzf4|yfUBAUf#_)}zwEg?-%;7g}&0&{X$KraF zE>wef8Ozzu$sBky3+9Ra4J>P zl5RLwmeM}+P1_!yP0hibPA zv-Y^-Rt%mB!)ntCB2>~5X&F-r^O{yhPTa~L(Ur#StRyd$p&5W!{yMzFyv-X>^$XPUu%5f{?WE)nprN%swUc_wG zwKJwswjIwmi(Z`-P90_}n5CR_C(NSs!nr||m}-#iq0%9<=sKP=?&||nzO=dWo*u4u zwY2Ma>k4X#tuA(gSA>QOoE&BIt^s3M$IZN(wNMMsa8YLU2DaUyIy52TQH?|lNKX%w zUGWRMkG<7%Bk@xFi*Kj<7T(;|sP zV$sGxy<;PUI0E^DfM^{bBKgSbqpndMa_oVrqEwmWkGsyKhpiTS47U#6V0H>xs}Bw2 z`OQdItIvn4VCTd(JqasaD;rBYV|rD~m>$APkMjr(8cPK&>cdHnA3n{n)hPnUnV=Q( z%#3o|0QY^0&}?|`V1-MJrxx_?FJV( z52yg&M{qYInwhH<+~zRtZG6__>3emI=)GX6F$?%sz){N4F~9-bDsq&?m-Z0oEZ|`9 z)lJ`b-2OK>{pu%R@Z7De1oyxevx=Jm6tHTL3p*yxZV8(s7nqND1^xqe C&Wcn3 diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.dgspec.json b/code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.dgspec.json deleted file mode 100644 index 0c8a60a6..00000000 --- a/code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.dgspec.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj": {} - }, - "projects": { - "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj", - "projectName": "Win.Abp.Snowflakes", - "projectPath": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj", - "packagesPath": "C:\\Users\\AIJXZ\\.nuget\\packages\\", - "outputPath": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Abp.Snowflakes\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\AIJXZ\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp5" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "netcoreapp5", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "netcoreapp5", - "dependencies": { - "Volo.Abp.Core": { - "target": "Package", - "version": "[4.0.0, )" - } - }, - "imports": [ - "portable-net45+win8+wp8+wpa81", - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[5.0.0, 5.0.0]" - }, - { - "name": "Microsoft.NETCore.App.Ref", - "version": "[5.0.0, 5.0.0]" - }, - { - "name": "Microsoft.WindowsDesktop.App.Ref", - "version": "[5.0.0, 5.0.0]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.304\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.props b/code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.props deleted file mode 100644 index 50301f3c..00000000 --- a/code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.props +++ /dev/null @@ -1,16 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\AIJXZ\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.6.0 - - - - - - \ No newline at end of file diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.targets b/code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.targets deleted file mode 100644 index 3dc06ef3..00000000 --- a/code/src/Shared/Win.Abp.Snowflakes/obj/Win.Abp.Snowflakes.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/project.assets.json b/code/src/Shared/Win.Abp.Snowflakes/obj/project.assets.json deleted file mode 100644 index fd3f0fd6..00000000 --- a/code/src/Shared/Win.Abp.Snowflakes/obj/project.assets.json +++ /dev/null @@ -1,3119 +0,0 @@ -{ - "version": 3, - "targets": { - "net5.0": { - "JetBrains.Annotations/2020.1.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/JetBrains.Annotations.dll": { - "related": ".deps.json;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/JetBrains.Annotations.dll": { - "related": ".deps.json;.xml" - } - } - }, - "Microsoft.Extensions.Configuration/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Configuration.CommandLine/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "5.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "5.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "5.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", - "Microsoft.Extensions.FileProviders.Physical": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Configuration.Json/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "5.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.Configuration.Json": "5.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", - "Microsoft.Extensions.FileProviders.Physical": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { - "related": ".xml" - } - }, - "build": { - "build/netstandard2.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" - }, - "compile": { - "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.FileProviders.Physical/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.FileSystemGlobbing/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Hosting.Abstractions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Localization/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Localization.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0" - }, - "compile": { - "lib/net5.0/Microsoft.Extensions.Localization.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.Localization.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Localization.Abstractions/5.0.0": { - "type": "package", - "compile": { - "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Logging/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Options/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/net5.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.Configuration.Binder": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Primitives/5.0.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Nito.AsyncEx.Context/5.0.0": { - "type": "package", - "dependencies": { - "Nito.AsyncEx.Tasks": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Nito.AsyncEx.Context.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Context.dll": { - "related": ".xml" - } - } - }, - "Nito.AsyncEx.Coordination/5.0.0": { - "type": "package", - "dependencies": { - "Nito.AsyncEx.Tasks": "5.0.0", - "Nito.Collections.Deque": "1.0.4", - "Nito.Disposables": "2.0.0" - }, - "compile": { - "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { - "related": ".xml" - } - } - }, - "Nito.AsyncEx.Tasks/5.0.0": { - "type": "package", - "dependencies": { - "Nito.Disposables": "2.0.0" - }, - "compile": { - "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { - "related": ".xml" - } - } - }, - "Nito.Collections.Deque/1.0.4": { - "type": "package", - "compile": { - "lib/netstandard2.0/Nito.Collections.Deque.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Nito.Collections.Deque.dll": { - "related": ".xml" - } - } - }, - "Nito.Disposables/2.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "1.4.0" - }, - "compile": { - "lib/netstandard2.0/Nito.Disposables.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Nito.Disposables.dll": { - "related": ".pdb;.xml" - } - } - }, - "System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.dll": { - "related": ".xml" - } - } - }, - "System.Collections.Immutable/1.7.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Collections.Immutable.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": { - "related": ".xml" - } - } - }, - "System.ComponentModel.Annotations/4.7.0": { - "type": "package", - "compile": { - "ref/netstandard2.1/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } - } - }, - "System.Globalization/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": { - "related": ".xml" - } - } - }, - "System.Linq/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Linq.Dynamic.Core/1.1.5": { - "type": "package", - "compile": { - "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": { - "related": ".pdb;.xml" - } - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Queryable/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Linq.Queryable.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Linq.Queryable.dll": {} - } - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} - } - }, - "System.Reflection/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } - } - }, - "System.Runtime.Loader/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Loader.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.Loader.dll": {} - } - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": { - "related": ".xml" - } - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": {} - } - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": { - "related": ".xml" - } - } - }, - "Volo.Abp.Core/4.0.0": { - "type": "package", - "dependencies": { - "JetBrains.Annotations": "2020.1.0", - "Microsoft.Extensions.Configuration.CommandLine": "5.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0", - "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0", - "Microsoft.Extensions.DependencyInjection": "5.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "5.0.0", - "Microsoft.Extensions.Localization": "5.0.0", - "Microsoft.Extensions.Logging": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0", - "Nito.AsyncEx.Context": "5.0.0", - "Nito.AsyncEx.Coordination": "5.0.0", - "System.Collections.Immutable": "1.7.1", - "System.ComponentModel.Annotations": "4.7.0", - "System.Linq.Dynamic.Core": "1.1.5", - "System.Linq.Queryable": "4.3.0", - "System.Runtime.Loader": "4.3.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Core.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Core.dll": { - "related": ".pdb;.xml" - } - } - } - } - }, - "libraries": { - "JetBrains.Annotations/2020.1.0": { - "sha512": "kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==", - "type": "package", - "path": "jetbrains.annotations/2020.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "icon.png", - "jetbrains.annotations.2020.1.0.nupkg.sha512", - "jetbrains.annotations.nuspec", - "lib/net20/JetBrains.Annotations.dll", - "lib/net20/JetBrains.Annotations.xml", - "lib/netstandard1.0/JetBrains.Annotations.deps.json", - "lib/netstandard1.0/JetBrains.Annotations.dll", - "lib/netstandard1.0/JetBrains.Annotations.xml", - "lib/netstandard2.0/JetBrains.Annotations.deps.json", - "lib/netstandard2.0/JetBrains.Annotations.dll", - "lib/netstandard2.0/JetBrains.Annotations.xml", - "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.dll", - "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml" - ] - }, - "Microsoft.Extensions.Configuration/5.0.0": { - "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==", - "type": "package", - "path": "microsoft.extensions.configuration/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.dll", - "lib/net461/Microsoft.Extensions.Configuration.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", - "microsoft.extensions.configuration.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration.Binder/5.0.0": { - "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==", - "type": "package", - "path": "microsoft.extensions.configuration.binder/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net461/Microsoft.Extensions.Configuration.Binder.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", - "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.binder.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration.CommandLine/5.0.0": { - "sha512": "OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==", - "type": "package", - "path": "microsoft.extensions.configuration.commandline/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll", - "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml", - "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.commandline.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": { - "sha512": "fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==", - "type": "package", - "path": "microsoft.extensions.configuration.environmentvariables/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", - "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", - "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.environmentvariables.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": { - "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==", - "type": "package", - "path": "microsoft.extensions.configuration.fileextensions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll", - "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", - "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.fileextensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration.Json/5.0.0": { - "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==", - "type": "package", - "path": "microsoft.extensions.configuration.json/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.Json.dll", - "lib/net461/Microsoft.Extensions.Configuration.Json.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", - "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.json.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": { - "sha512": "+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==", - "type": "package", - "path": "microsoft.extensions.configuration.usersecrets/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props", - "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", - "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll", - "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml", - "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.usersecrets.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection/5.0.0": { - "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.DependencyInjection.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.xml", - "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { - "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": { - "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==", - "type": "package", - "path": "microsoft.extensions.fileproviders.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll", - "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", - "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.fileproviders.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.FileProviders.Physical/5.0.0": { - "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==", - "type": "package", - "path": "microsoft.extensions.fileproviders.physical/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll", - "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", - "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512", - "microsoft.extensions.fileproviders.physical.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.FileSystemGlobbing/5.0.0": { - "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==", - "type": "package", - "path": "microsoft.extensions.filesystemglobbing/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll", - "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml", - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", - "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512", - "microsoft.extensions.filesystemglobbing.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Hosting.Abstractions/5.0.0": { - "sha512": "cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==", - "type": "package", - "path": "microsoft.extensions.hosting.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", - "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.hosting.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Localization/5.0.0": { - "sha512": "PJ2TouziI0zcgiq2VapjNFkMsT05rZUfq0i6sY+59Ri6Mn9W7okJ1U5/CvetFDUAN0DHrXOTaaMSt5epUn6rQQ==", - "type": "package", - "path": "microsoft.extensions.localization/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Localization.dll", - "lib/net461/Microsoft.Extensions.Localization.xml", - "lib/net5.0/Microsoft.Extensions.Localization.dll", - "lib/net5.0/Microsoft.Extensions.Localization.xml", - "lib/netstandard2.0/Microsoft.Extensions.Localization.dll", - "lib/netstandard2.0/Microsoft.Extensions.Localization.xml", - "microsoft.extensions.localization.5.0.0.nupkg.sha512", - "microsoft.extensions.localization.nuspec" - ] - }, - "Microsoft.Extensions.Localization.Abstractions/5.0.0": { - "sha512": "Uey8VI3FbPFLiLh+mnFN13DTbQASSuzV3ZeN9Oma2Y4YW7OBWjU9LAsvPISRBQHrwztXegSoCacFWqB9o992xQ==", - "type": "package", - "path": "microsoft.extensions.localization.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Localization.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Localization.Abstractions.xml", - "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll", - "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml", - "microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.localization.abstractions.nuspec" - ] - }, - "Microsoft.Extensions.Logging/5.0.0": { - "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", - "type": "package", - "path": "microsoft.extensions.logging/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.dll", - "lib/net461/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.5.0.0.nupkg.sha512", - "microsoft.extensions.logging.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Options/5.0.0": { - "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", - "type": "package", - "path": "microsoft.extensions.options/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Options.dll", - "lib/net461/Microsoft.Extensions.Options.xml", - "lib/net5.0/Microsoft.Extensions.Options.dll", - "lib/net5.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.5.0.0.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": { - "sha512": "280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==", - "type": "package", - "path": "microsoft.extensions.options.configurationextensions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512", - "microsoft.extensions.options.configurationextensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Primitives/5.0.0": { - "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", - "type": "package", - "path": "microsoft.extensions.primitives/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Primitives.dll", - "lib/net461/Microsoft.Extensions.Primitives.xml", - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll", - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.5.0.0.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "type": "package", - "path": "microsoft.netcore.platforms/1.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.1.1.0.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Targets/1.1.0": { - "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "type": "package", - "path": "microsoft.netcore.targets/1.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "microsoft.netcore.targets.1.1.0.nupkg.sha512", - "microsoft.netcore.targets.nuspec", - "runtime.json" - ] - }, - "Nito.AsyncEx.Context/5.0.0": { - "sha512": "Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==", - "type": "package", - "path": "nito.asyncex.context/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.3/Nito.AsyncEx.Context.dll", - "lib/netstandard1.3/Nito.AsyncEx.Context.xml", - "lib/netstandard2.0/Nito.AsyncEx.Context.dll", - "lib/netstandard2.0/Nito.AsyncEx.Context.xml", - "nito.asyncex.context.5.0.0.nupkg.sha512", - "nito.asyncex.context.nuspec" - ] - }, - "Nito.AsyncEx.Coordination/5.0.0": { - "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==", - "type": "package", - "path": "nito.asyncex.coordination/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll", - "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml", - "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll", - "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml", - "nito.asyncex.coordination.5.0.0.nupkg.sha512", - "nito.asyncex.coordination.nuspec" - ] - }, - "Nito.AsyncEx.Tasks/5.0.0": { - "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==", - "type": "package", - "path": "nito.asyncex.tasks/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll", - "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml", - "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll", - "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml", - "nito.asyncex.tasks.5.0.0.nupkg.sha512", - "nito.asyncex.tasks.nuspec" - ] - }, - "Nito.Collections.Deque/1.0.4": { - "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==", - "type": "package", - "path": "nito.collections.deque/1.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.0/Nito.Collections.Deque.dll", - "lib/netstandard1.0/Nito.Collections.Deque.xml", - "lib/netstandard2.0/Nito.Collections.Deque.dll", - "lib/netstandard2.0/Nito.Collections.Deque.xml", - "nito.collections.deque.1.0.4.nupkg.sha512", - "nito.collections.deque.nuspec" - ] - }, - "Nito.Disposables/2.0.0": { - "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==", - "type": "package", - "path": "nito.disposables/2.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.0/Nito.Disposables.dll", - "lib/netstandard1.0/Nito.Disposables.pdb", - "lib/netstandard1.0/Nito.Disposables.xml", - "lib/netstandard2.0/Nito.Disposables.dll", - "lib/netstandard2.0/Nito.Disposables.pdb", - "lib/netstandard2.0/Nito.Disposables.xml", - "nito.disposables.2.0.0.nupkg.sha512", - "nito.disposables.nuspec" - ] - }, - "System.Collections/4.3.0": { - "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "type": "package", - "path": "system.collections/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.dll", - "ref/netcore50/System.Collections.xml", - "ref/netcore50/de/System.Collections.xml", - "ref/netcore50/es/System.Collections.xml", - "ref/netcore50/fr/System.Collections.xml", - "ref/netcore50/it/System.Collections.xml", - "ref/netcore50/ja/System.Collections.xml", - "ref/netcore50/ko/System.Collections.xml", - "ref/netcore50/ru/System.Collections.xml", - "ref/netcore50/zh-hans/System.Collections.xml", - "ref/netcore50/zh-hant/System.Collections.xml", - "ref/netstandard1.0/System.Collections.dll", - "ref/netstandard1.0/System.Collections.xml", - "ref/netstandard1.0/de/System.Collections.xml", - "ref/netstandard1.0/es/System.Collections.xml", - "ref/netstandard1.0/fr/System.Collections.xml", - "ref/netstandard1.0/it/System.Collections.xml", - "ref/netstandard1.0/ja/System.Collections.xml", - "ref/netstandard1.0/ko/System.Collections.xml", - "ref/netstandard1.0/ru/System.Collections.xml", - "ref/netstandard1.0/zh-hans/System.Collections.xml", - "ref/netstandard1.0/zh-hant/System.Collections.xml", - "ref/netstandard1.3/System.Collections.dll", - "ref/netstandard1.3/System.Collections.xml", - "ref/netstandard1.3/de/System.Collections.xml", - "ref/netstandard1.3/es/System.Collections.xml", - "ref/netstandard1.3/fr/System.Collections.xml", - "ref/netstandard1.3/it/System.Collections.xml", - "ref/netstandard1.3/ja/System.Collections.xml", - "ref/netstandard1.3/ko/System.Collections.xml", - "ref/netstandard1.3/ru/System.Collections.xml", - "ref/netstandard1.3/zh-hans/System.Collections.xml", - "ref/netstandard1.3/zh-hant/System.Collections.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.4.3.0.nupkg.sha512", - "system.collections.nuspec" - ] - }, - "System.Collections.Immutable/1.7.1": { - "sha512": "B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==", - "type": "package", - "path": "system.collections.immutable/1.7.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Collections.Immutable.dll", - "lib/net461/System.Collections.Immutable.xml", - "lib/netstandard1.0/System.Collections.Immutable.dll", - "lib/netstandard1.0/System.Collections.Immutable.xml", - "lib/netstandard1.3/System.Collections.Immutable.dll", - "lib/netstandard1.3/System.Collections.Immutable.xml", - "lib/netstandard2.0/System.Collections.Immutable.dll", - "lib/netstandard2.0/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", - "system.collections.immutable.1.7.1.nupkg.sha512", - "system.collections.immutable.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.ComponentModel.Annotations/4.7.0": { - "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==", - "type": "package", - "path": "system.componentmodel.annotations/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net461/System.ComponentModel.Annotations.dll", - "lib/netcore50/System.ComponentModel.Annotations.dll", - "lib/netstandard1.4/System.ComponentModel.Annotations.dll", - "lib/netstandard2.0/System.ComponentModel.Annotations.dll", - "lib/netstandard2.1/System.ComponentModel.Annotations.dll", - "lib/netstandard2.1/System.ComponentModel.Annotations.xml", - "lib/portable-net45+win8/_._", - "lib/win8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net461/System.ComponentModel.Annotations.dll", - "ref/net461/System.ComponentModel.Annotations.xml", - "ref/netcore50/System.ComponentModel.Annotations.dll", - "ref/netcore50/System.ComponentModel.Annotations.xml", - "ref/netcore50/de/System.ComponentModel.Annotations.xml", - "ref/netcore50/es/System.ComponentModel.Annotations.xml", - "ref/netcore50/fr/System.ComponentModel.Annotations.xml", - "ref/netcore50/it/System.ComponentModel.Annotations.xml", - "ref/netcore50/ja/System.ComponentModel.Annotations.xml", - "ref/netcore50/ko/System.ComponentModel.Annotations.xml", - "ref/netcore50/ru/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/System.ComponentModel.Annotations.dll", - "ref/netstandard1.1/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/System.ComponentModel.Annotations.dll", - "ref/netstandard1.3/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/System.ComponentModel.Annotations.dll", - "ref/netstandard1.4/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard2.0/System.ComponentModel.Annotations.dll", - "ref/netstandard2.0/System.ComponentModel.Annotations.xml", - "ref/netstandard2.1/System.ComponentModel.Annotations.dll", - "ref/netstandard2.1/System.ComponentModel.Annotations.xml", - "ref/portable-net45+win8/_._", - "ref/win8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.annotations.4.7.0.nupkg.sha512", - "system.componentmodel.annotations.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Diagnostics.Debug/4.3.0": { - "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "type": "package", - "path": "system.diagnostics.debug/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Debug.dll", - "ref/netcore50/System.Diagnostics.Debug.xml", - "ref/netcore50/de/System.Diagnostics.Debug.xml", - "ref/netcore50/es/System.Diagnostics.Debug.xml", - "ref/netcore50/fr/System.Diagnostics.Debug.xml", - "ref/netcore50/it/System.Diagnostics.Debug.xml", - "ref/netcore50/ja/System.Diagnostics.Debug.xml", - "ref/netcore50/ko/System.Diagnostics.Debug.xml", - "ref/netcore50/ru/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/System.Diagnostics.Debug.dll", - "ref/netstandard1.0/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/System.Diagnostics.Debug.dll", - "ref/netstandard1.3/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.debug.4.3.0.nupkg.sha512", - "system.diagnostics.debug.nuspec" - ] - }, - "System.Globalization/4.3.0": { - "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "type": "package", - "path": "system.globalization/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Globalization.dll", - "ref/netcore50/System.Globalization.xml", - "ref/netcore50/de/System.Globalization.xml", - "ref/netcore50/es/System.Globalization.xml", - "ref/netcore50/fr/System.Globalization.xml", - "ref/netcore50/it/System.Globalization.xml", - "ref/netcore50/ja/System.Globalization.xml", - "ref/netcore50/ko/System.Globalization.xml", - "ref/netcore50/ru/System.Globalization.xml", - "ref/netcore50/zh-hans/System.Globalization.xml", - "ref/netcore50/zh-hant/System.Globalization.xml", - "ref/netstandard1.0/System.Globalization.dll", - "ref/netstandard1.0/System.Globalization.xml", - "ref/netstandard1.0/de/System.Globalization.xml", - "ref/netstandard1.0/es/System.Globalization.xml", - "ref/netstandard1.0/fr/System.Globalization.xml", - "ref/netstandard1.0/it/System.Globalization.xml", - "ref/netstandard1.0/ja/System.Globalization.xml", - "ref/netstandard1.0/ko/System.Globalization.xml", - "ref/netstandard1.0/ru/System.Globalization.xml", - "ref/netstandard1.0/zh-hans/System.Globalization.xml", - "ref/netstandard1.0/zh-hant/System.Globalization.xml", - "ref/netstandard1.3/System.Globalization.dll", - "ref/netstandard1.3/System.Globalization.xml", - "ref/netstandard1.3/de/System.Globalization.xml", - "ref/netstandard1.3/es/System.Globalization.xml", - "ref/netstandard1.3/fr/System.Globalization.xml", - "ref/netstandard1.3/it/System.Globalization.xml", - "ref/netstandard1.3/ja/System.Globalization.xml", - "ref/netstandard1.3/ko/System.Globalization.xml", - "ref/netstandard1.3/ru/System.Globalization.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.globalization.4.3.0.nupkg.sha512", - "system.globalization.nuspec" - ] - }, - "System.IO/4.3.0": { - "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "type": "package", - "path": "system.io/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.IO.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.IO.dll", - "ref/netcore50/System.IO.dll", - "ref/netcore50/System.IO.xml", - "ref/netcore50/de/System.IO.xml", - "ref/netcore50/es/System.IO.xml", - "ref/netcore50/fr/System.IO.xml", - "ref/netcore50/it/System.IO.xml", - "ref/netcore50/ja/System.IO.xml", - "ref/netcore50/ko/System.IO.xml", - "ref/netcore50/ru/System.IO.xml", - "ref/netcore50/zh-hans/System.IO.xml", - "ref/netcore50/zh-hant/System.IO.xml", - "ref/netstandard1.0/System.IO.dll", - "ref/netstandard1.0/System.IO.xml", - "ref/netstandard1.0/de/System.IO.xml", - "ref/netstandard1.0/es/System.IO.xml", - "ref/netstandard1.0/fr/System.IO.xml", - "ref/netstandard1.0/it/System.IO.xml", - "ref/netstandard1.0/ja/System.IO.xml", - "ref/netstandard1.0/ko/System.IO.xml", - "ref/netstandard1.0/ru/System.IO.xml", - "ref/netstandard1.0/zh-hans/System.IO.xml", - "ref/netstandard1.0/zh-hant/System.IO.xml", - "ref/netstandard1.3/System.IO.dll", - "ref/netstandard1.3/System.IO.xml", - "ref/netstandard1.3/de/System.IO.xml", - "ref/netstandard1.3/es/System.IO.xml", - "ref/netstandard1.3/fr/System.IO.xml", - "ref/netstandard1.3/it/System.IO.xml", - "ref/netstandard1.3/ja/System.IO.xml", - "ref/netstandard1.3/ko/System.IO.xml", - "ref/netstandard1.3/ru/System.IO.xml", - "ref/netstandard1.3/zh-hans/System.IO.xml", - "ref/netstandard1.3/zh-hant/System.IO.xml", - "ref/netstandard1.5/System.IO.dll", - "ref/netstandard1.5/System.IO.xml", - "ref/netstandard1.5/de/System.IO.xml", - "ref/netstandard1.5/es/System.IO.xml", - "ref/netstandard1.5/fr/System.IO.xml", - "ref/netstandard1.5/it/System.IO.xml", - "ref/netstandard1.5/ja/System.IO.xml", - "ref/netstandard1.5/ko/System.IO.xml", - "ref/netstandard1.5/ru/System.IO.xml", - "ref/netstandard1.5/zh-hans/System.IO.xml", - "ref/netstandard1.5/zh-hant/System.IO.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.4.3.0.nupkg.sha512", - "system.io.nuspec" - ] - }, - "System.Linq/4.3.0": { - "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "type": "package", - "path": "system.linq/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.dll", - "lib/netcore50/System.Linq.dll", - "lib/netstandard1.6/System.Linq.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.dll", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/netcore50/de/System.Linq.xml", - "ref/netcore50/es/System.Linq.xml", - "ref/netcore50/fr/System.Linq.xml", - "ref/netcore50/it/System.Linq.xml", - "ref/netcore50/ja/System.Linq.xml", - "ref/netcore50/ko/System.Linq.xml", - "ref/netcore50/ru/System.Linq.xml", - "ref/netcore50/zh-hans/System.Linq.xml", - "ref/netcore50/zh-hant/System.Linq.xml", - "ref/netstandard1.0/System.Linq.dll", - "ref/netstandard1.0/System.Linq.xml", - "ref/netstandard1.0/de/System.Linq.xml", - "ref/netstandard1.0/es/System.Linq.xml", - "ref/netstandard1.0/fr/System.Linq.xml", - "ref/netstandard1.0/it/System.Linq.xml", - "ref/netstandard1.0/ja/System.Linq.xml", - "ref/netstandard1.0/ko/System.Linq.xml", - "ref/netstandard1.0/ru/System.Linq.xml", - "ref/netstandard1.0/zh-hans/System.Linq.xml", - "ref/netstandard1.0/zh-hant/System.Linq.xml", - "ref/netstandard1.6/System.Linq.dll", - "ref/netstandard1.6/System.Linq.xml", - "ref/netstandard1.6/de/System.Linq.xml", - "ref/netstandard1.6/es/System.Linq.xml", - "ref/netstandard1.6/fr/System.Linq.xml", - "ref/netstandard1.6/it/System.Linq.xml", - "ref/netstandard1.6/ja/System.Linq.xml", - "ref/netstandard1.6/ko/System.Linq.xml", - "ref/netstandard1.6/ru/System.Linq.xml", - "ref/netstandard1.6/zh-hans/System.Linq.xml", - "ref/netstandard1.6/zh-hant/System.Linq.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.4.3.0.nupkg.sha512", - "system.linq.nuspec" - ] - }, - "System.Linq.Dynamic.Core/1.1.5": { - "sha512": "VxPRhLUvdALtBE6vdO83LxjSc3RQ9CPYwLofqKg3BkOxgz8xb4Z4vr/YhoSQ5NGHR7m6yhMDzUNUWUEeSTCHmA==", - "type": "package", - "path": "system.linq.dynamic.core/1.1.5", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net35/System.Linq.Dynamic.Core.dll", - "lib/net35/System.Linq.Dynamic.Core.pdb", - "lib/net35/System.Linq.Dynamic.Core.xml", - "lib/net40/System.Linq.Dynamic.Core.dll", - "lib/net40/System.Linq.Dynamic.Core.pdb", - "lib/net40/System.Linq.Dynamic.Core.xml", - "lib/net45/System.Linq.Dynamic.Core.dll", - "lib/net45/System.Linq.Dynamic.Core.pdb", - "lib/net45/System.Linq.Dynamic.Core.xml", - "lib/net46/System.Linq.Dynamic.Core.dll", - "lib/net46/System.Linq.Dynamic.Core.pdb", - "lib/net46/System.Linq.Dynamic.Core.xml", - "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll", - "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb", - "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml", - "lib/netstandard1.3/System.Linq.Dynamic.Core.dll", - "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb", - "lib/netstandard1.3/System.Linq.Dynamic.Core.xml", - "lib/netstandard2.0/System.Linq.Dynamic.Core.dll", - "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb", - "lib/netstandard2.0/System.Linq.Dynamic.Core.xml", - "lib/uap10.0/System.Linq.Dynamic.Core.dll", - "lib/uap10.0/System.Linq.Dynamic.Core.pdb", - "lib/uap10.0/System.Linq.Dynamic.Core.pri", - "lib/uap10.0/System.Linq.Dynamic.Core.xml", - "system.linq.dynamic.core.1.1.5.nupkg.sha512", - "system.linq.dynamic.core.nuspec" - ] - }, - "System.Linq.Expressions/4.3.0": { - "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "type": "package", - "path": "system.linq.expressions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.Expressions.dll", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.6/System.Linq.Expressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "ref/netcore50/de/System.Linq.Expressions.xml", - "ref/netcore50/es/System.Linq.Expressions.xml", - "ref/netcore50/fr/System.Linq.Expressions.xml", - "ref/netcore50/it/System.Linq.Expressions.xml", - "ref/netcore50/ja/System.Linq.Expressions.xml", - "ref/netcore50/ko/System.Linq.Expressions.xml", - "ref/netcore50/ru/System.Linq.Expressions.xml", - "ref/netcore50/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.0/System.Linq.Expressions.dll", - "ref/netstandard1.0/System.Linq.Expressions.xml", - "ref/netstandard1.0/de/System.Linq.Expressions.xml", - "ref/netstandard1.0/es/System.Linq.Expressions.xml", - "ref/netstandard1.0/fr/System.Linq.Expressions.xml", - "ref/netstandard1.0/it/System.Linq.Expressions.xml", - "ref/netstandard1.0/ja/System.Linq.Expressions.xml", - "ref/netstandard1.0/ko/System.Linq.Expressions.xml", - "ref/netstandard1.0/ru/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.3/System.Linq.Expressions.dll", - "ref/netstandard1.3/System.Linq.Expressions.xml", - "ref/netstandard1.3/de/System.Linq.Expressions.xml", - "ref/netstandard1.3/es/System.Linq.Expressions.xml", - "ref/netstandard1.3/fr/System.Linq.Expressions.xml", - "ref/netstandard1.3/it/System.Linq.Expressions.xml", - "ref/netstandard1.3/ja/System.Linq.Expressions.xml", - "ref/netstandard1.3/ko/System.Linq.Expressions.xml", - "ref/netstandard1.3/ru/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.6/System.Linq.Expressions.dll", - "ref/netstandard1.6/System.Linq.Expressions.xml", - "ref/netstandard1.6/de/System.Linq.Expressions.xml", - "ref/netstandard1.6/es/System.Linq.Expressions.xml", - "ref/netstandard1.6/fr/System.Linq.Expressions.xml", - "ref/netstandard1.6/it/System.Linq.Expressions.xml", - "ref/netstandard1.6/ja/System.Linq.Expressions.xml", - "ref/netstandard1.6/ko/System.Linq.Expressions.xml", - "ref/netstandard1.6/ru/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", - "system.linq.expressions.4.3.0.nupkg.sha512", - "system.linq.expressions.nuspec" - ] - }, - "System.Linq.Queryable/4.3.0": { - "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==", - "type": "package", - "path": "system.linq.queryable/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/monoandroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Linq.Queryable.dll", - "lib/netstandard1.3/System.Linq.Queryable.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/monoandroid10/_._", - "ref/monotouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Linq.Queryable.dll", - "ref/netcore50/System.Linq.Queryable.xml", - "ref/netcore50/de/System.Linq.Queryable.xml", - "ref/netcore50/es/System.Linq.Queryable.xml", - "ref/netcore50/fr/System.Linq.Queryable.xml", - "ref/netcore50/it/System.Linq.Queryable.xml", - "ref/netcore50/ja/System.Linq.Queryable.xml", - "ref/netcore50/ko/System.Linq.Queryable.xml", - "ref/netcore50/ru/System.Linq.Queryable.xml", - "ref/netcore50/zh-hans/System.Linq.Queryable.xml", - "ref/netcore50/zh-hant/System.Linq.Queryable.xml", - "ref/netstandard1.0/System.Linq.Queryable.dll", - "ref/netstandard1.0/System.Linq.Queryable.xml", - "ref/netstandard1.0/de/System.Linq.Queryable.xml", - "ref/netstandard1.0/es/System.Linq.Queryable.xml", - "ref/netstandard1.0/fr/System.Linq.Queryable.xml", - "ref/netstandard1.0/it/System.Linq.Queryable.xml", - "ref/netstandard1.0/ja/System.Linq.Queryable.xml", - "ref/netstandard1.0/ko/System.Linq.Queryable.xml", - "ref/netstandard1.0/ru/System.Linq.Queryable.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.queryable.4.3.0.nupkg.sha512", - "system.linq.queryable.nuspec" - ] - }, - "System.ObjectModel/4.3.0": { - "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "type": "package", - "path": "system.objectmodel/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/netstandard1.3/System.ObjectModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/de/System.ObjectModel.xml", - "ref/netcore50/es/System.ObjectModel.xml", - "ref/netcore50/fr/System.ObjectModel.xml", - "ref/netcore50/it/System.ObjectModel.xml", - "ref/netcore50/ja/System.ObjectModel.xml", - "ref/netcore50/ko/System.ObjectModel.xml", - "ref/netcore50/ru/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.0/System.ObjectModel.dll", - "ref/netstandard1.0/System.ObjectModel.xml", - "ref/netstandard1.0/de/System.ObjectModel.xml", - "ref/netstandard1.0/es/System.ObjectModel.xml", - "ref/netstandard1.0/fr/System.ObjectModel.xml", - "ref/netstandard1.0/it/System.ObjectModel.xml", - "ref/netstandard1.0/ja/System.ObjectModel.xml", - "ref/netstandard1.0/ko/System.ObjectModel.xml", - "ref/netstandard1.0/ru/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.3/System.ObjectModel.dll", - "ref/netstandard1.3/System.ObjectModel.xml", - "ref/netstandard1.3/de/System.ObjectModel.xml", - "ref/netstandard1.3/es/System.ObjectModel.xml", - "ref/netstandard1.3/fr/System.ObjectModel.xml", - "ref/netstandard1.3/it/System.ObjectModel.xml", - "ref/netstandard1.3/ja/System.ObjectModel.xml", - "ref/netstandard1.3/ko/System.ObjectModel.xml", - "ref/netstandard1.3/ru/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.objectmodel.4.3.0.nupkg.sha512", - "system.objectmodel.nuspec" - ] - }, - "System.Reflection/4.3.0": { - "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "type": "package", - "path": "system.reflection/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Reflection.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Reflection.dll", - "ref/netcore50/System.Reflection.dll", - "ref/netcore50/System.Reflection.xml", - "ref/netcore50/de/System.Reflection.xml", - "ref/netcore50/es/System.Reflection.xml", - "ref/netcore50/fr/System.Reflection.xml", - "ref/netcore50/it/System.Reflection.xml", - "ref/netcore50/ja/System.Reflection.xml", - "ref/netcore50/ko/System.Reflection.xml", - "ref/netcore50/ru/System.Reflection.xml", - "ref/netcore50/zh-hans/System.Reflection.xml", - "ref/netcore50/zh-hant/System.Reflection.xml", - "ref/netstandard1.0/System.Reflection.dll", - "ref/netstandard1.0/System.Reflection.xml", - "ref/netstandard1.0/de/System.Reflection.xml", - "ref/netstandard1.0/es/System.Reflection.xml", - "ref/netstandard1.0/fr/System.Reflection.xml", - "ref/netstandard1.0/it/System.Reflection.xml", - "ref/netstandard1.0/ja/System.Reflection.xml", - "ref/netstandard1.0/ko/System.Reflection.xml", - "ref/netstandard1.0/ru/System.Reflection.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.xml", - "ref/netstandard1.3/System.Reflection.dll", - "ref/netstandard1.3/System.Reflection.xml", - "ref/netstandard1.3/de/System.Reflection.xml", - "ref/netstandard1.3/es/System.Reflection.xml", - "ref/netstandard1.3/fr/System.Reflection.xml", - "ref/netstandard1.3/it/System.Reflection.xml", - "ref/netstandard1.3/ja/System.Reflection.xml", - "ref/netstandard1.3/ko/System.Reflection.xml", - "ref/netstandard1.3/ru/System.Reflection.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.xml", - "ref/netstandard1.5/System.Reflection.dll", - "ref/netstandard1.5/System.Reflection.xml", - "ref/netstandard1.5/de/System.Reflection.xml", - "ref/netstandard1.5/es/System.Reflection.xml", - "ref/netstandard1.5/fr/System.Reflection.xml", - "ref/netstandard1.5/it/System.Reflection.xml", - "ref/netstandard1.5/ja/System.Reflection.xml", - "ref/netstandard1.5/ko/System.Reflection.xml", - "ref/netstandard1.5/ru/System.Reflection.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.4.3.0.nupkg.sha512", - "system.reflection.nuspec" - ] - }, - "System.Reflection.Emit/4.3.0": { - "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "type": "package", - "path": "system.reflection.emit/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/netstandard1.3/System.Reflection.Emit.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/net45/_._", - "ref/netstandard1.1/System.Reflection.Emit.dll", - "ref/netstandard1.1/System.Reflection.Emit.xml", - "ref/netstandard1.1/de/System.Reflection.Emit.xml", - "ref/netstandard1.1/es/System.Reflection.Emit.xml", - "ref/netstandard1.1/fr/System.Reflection.Emit.xml", - "ref/netstandard1.1/it/System.Reflection.Emit.xml", - "ref/netstandard1.1/ja/System.Reflection.Emit.xml", - "ref/netstandard1.1/ko/System.Reflection.Emit.xml", - "ref/netstandard1.1/ru/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", - "ref/xamarinmac20/_._", - "system.reflection.emit.4.3.0.nupkg.sha512", - "system.reflection.emit.nuspec" - ] - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "type": "package", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "system.reflection.emit.ilgeneration.nuspec" - ] - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "type": "package", - "path": "system.reflection.emit.lightweight/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "system.reflection.emit.lightweight.nuspec" - ] - }, - "System.Reflection.Extensions/4.3.0": { - "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "type": "package", - "path": "system.reflection.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/de/System.Reflection.Extensions.xml", - "ref/netcore50/es/System.Reflection.Extensions.xml", - "ref/netcore50/fr/System.Reflection.Extensions.xml", - "ref/netcore50/it/System.Reflection.Extensions.xml", - "ref/netcore50/ja/System.Reflection.Extensions.xml", - "ref/netcore50/ko/System.Reflection.Extensions.xml", - "ref/netcore50/ru/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/netstandard1.0/System.Reflection.Extensions.dll", - "ref/netstandard1.0/System.Reflection.Extensions.xml", - "ref/netstandard1.0/de/System.Reflection.Extensions.xml", - "ref/netstandard1.0/es/System.Reflection.Extensions.xml", - "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", - "ref/netstandard1.0/it/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.extensions.4.3.0.nupkg.sha512", - "system.reflection.extensions.nuspec" - ] - }, - "System.Reflection.Primitives/4.3.0": { - "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "type": "package", - "path": "system.reflection.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Primitives.dll", - "ref/netcore50/System.Reflection.Primitives.xml", - "ref/netcore50/de/System.Reflection.Primitives.xml", - "ref/netcore50/es/System.Reflection.Primitives.xml", - "ref/netcore50/fr/System.Reflection.Primitives.xml", - "ref/netcore50/it/System.Reflection.Primitives.xml", - "ref/netcore50/ja/System.Reflection.Primitives.xml", - "ref/netcore50/ko/System.Reflection.Primitives.xml", - "ref/netcore50/ru/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", - "ref/netstandard1.0/System.Reflection.Primitives.dll", - "ref/netstandard1.0/System.Reflection.Primitives.xml", - "ref/netstandard1.0/de/System.Reflection.Primitives.xml", - "ref/netstandard1.0/es/System.Reflection.Primitives.xml", - "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", - "ref/netstandard1.0/it/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.primitives.4.3.0.nupkg.sha512", - "system.reflection.primitives.nuspec" - ] - }, - "System.Reflection.TypeExtensions/4.3.0": { - "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "type": "package", - "path": "system.reflection.typeextensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net462/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net462/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "system.reflection.typeextensions.4.3.0.nupkg.sha512", - "system.reflection.typeextensions.nuspec" - ] - }, - "System.Resources.ResourceManager/4.3.0": { - "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "type": "package", - "path": "system.resources.resourcemanager/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/netcore50/de/System.Resources.ResourceManager.xml", - "ref/netcore50/es/System.Resources.ResourceManager.xml", - "ref/netcore50/fr/System.Resources.ResourceManager.xml", - "ref/netcore50/it/System.Resources.ResourceManager.xml", - "ref/netcore50/ja/System.Resources.ResourceManager.xml", - "ref/netcore50/ko/System.Resources.ResourceManager.xml", - "ref/netcore50/ru/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/System.Resources.ResourceManager.dll", - "ref/netstandard1.0/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.resources.resourcemanager.4.3.0.nupkg.sha512", - "system.resources.resourcemanager.nuspec" - ] - }, - "System.Runtime/4.3.0": { - "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "type": "package", - "path": "system.runtime/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.dll", - "lib/portable-net45+win8+wp80+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.dll", - "ref/netcore50/System.Runtime.dll", - "ref/netcore50/System.Runtime.xml", - "ref/netcore50/de/System.Runtime.xml", - "ref/netcore50/es/System.Runtime.xml", - "ref/netcore50/fr/System.Runtime.xml", - "ref/netcore50/it/System.Runtime.xml", - "ref/netcore50/ja/System.Runtime.xml", - "ref/netcore50/ko/System.Runtime.xml", - "ref/netcore50/ru/System.Runtime.xml", - "ref/netcore50/zh-hans/System.Runtime.xml", - "ref/netcore50/zh-hant/System.Runtime.xml", - "ref/netstandard1.0/System.Runtime.dll", - "ref/netstandard1.0/System.Runtime.xml", - "ref/netstandard1.0/de/System.Runtime.xml", - "ref/netstandard1.0/es/System.Runtime.xml", - "ref/netstandard1.0/fr/System.Runtime.xml", - "ref/netstandard1.0/it/System.Runtime.xml", - "ref/netstandard1.0/ja/System.Runtime.xml", - "ref/netstandard1.0/ko/System.Runtime.xml", - "ref/netstandard1.0/ru/System.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.xml", - "ref/netstandard1.2/System.Runtime.dll", - "ref/netstandard1.2/System.Runtime.xml", - "ref/netstandard1.2/de/System.Runtime.xml", - "ref/netstandard1.2/es/System.Runtime.xml", - "ref/netstandard1.2/fr/System.Runtime.xml", - "ref/netstandard1.2/it/System.Runtime.xml", - "ref/netstandard1.2/ja/System.Runtime.xml", - "ref/netstandard1.2/ko/System.Runtime.xml", - "ref/netstandard1.2/ru/System.Runtime.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.xml", - "ref/netstandard1.3/System.Runtime.dll", - "ref/netstandard1.3/System.Runtime.xml", - "ref/netstandard1.3/de/System.Runtime.xml", - "ref/netstandard1.3/es/System.Runtime.xml", - "ref/netstandard1.3/fr/System.Runtime.xml", - "ref/netstandard1.3/it/System.Runtime.xml", - "ref/netstandard1.3/ja/System.Runtime.xml", - "ref/netstandard1.3/ko/System.Runtime.xml", - "ref/netstandard1.3/ru/System.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.xml", - "ref/netstandard1.5/System.Runtime.dll", - "ref/netstandard1.5/System.Runtime.xml", - "ref/netstandard1.5/de/System.Runtime.xml", - "ref/netstandard1.5/es/System.Runtime.xml", - "ref/netstandard1.5/fr/System.Runtime.xml", - "ref/netstandard1.5/it/System.Runtime.xml", - "ref/netstandard1.5/ja/System.Runtime.xml", - "ref/netstandard1.5/ko/System.Runtime.xml", - "ref/netstandard1.5/ru/System.Runtime.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.xml", - "ref/portable-net45+win8+wp80+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.4.3.0.nupkg.sha512", - "system.runtime.nuspec" - ] - }, - "System.Runtime.Extensions/4.3.0": { - "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "type": "package", - "path": "system.runtime.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.xml", - "ref/netcore50/de/System.Runtime.Extensions.xml", - "ref/netcore50/es/System.Runtime.Extensions.xml", - "ref/netcore50/fr/System.Runtime.Extensions.xml", - "ref/netcore50/it/System.Runtime.Extensions.xml", - "ref/netcore50/ja/System.Runtime.Extensions.xml", - "ref/netcore50/ko/System.Runtime.Extensions.xml", - "ref/netcore50/ru/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.0/System.Runtime.Extensions.dll", - "ref/netstandard1.0/System.Runtime.Extensions.xml", - "ref/netstandard1.0/de/System.Runtime.Extensions.xml", - "ref/netstandard1.0/es/System.Runtime.Extensions.xml", - "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.0/it/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.3/System.Runtime.Extensions.dll", - "ref/netstandard1.3/System.Runtime.Extensions.xml", - "ref/netstandard1.3/de/System.Runtime.Extensions.xml", - "ref/netstandard1.3/es/System.Runtime.Extensions.xml", - "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.3/it/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.5/System.Runtime.Extensions.dll", - "ref/netstandard1.5/System.Runtime.Extensions.xml", - "ref/netstandard1.5/de/System.Runtime.Extensions.xml", - "ref/netstandard1.5/es/System.Runtime.Extensions.xml", - "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.5/it/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.extensions.4.3.0.nupkg.sha512", - "system.runtime.extensions.nuspec" - ] - }, - "System.Runtime.Loader/4.3.0": { - "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==", - "type": "package", - "path": "system.runtime.loader/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net462/_._", - "lib/netstandard1.5/System.Runtime.Loader.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard1.5/System.Runtime.Loader.dll", - "ref/netstandard1.5/System.Runtime.Loader.xml", - "ref/netstandard1.5/de/System.Runtime.Loader.xml", - "ref/netstandard1.5/es/System.Runtime.Loader.xml", - "ref/netstandard1.5/fr/System.Runtime.Loader.xml", - "ref/netstandard1.5/it/System.Runtime.Loader.xml", - "ref/netstandard1.5/ja/System.Runtime.Loader.xml", - "ref/netstandard1.5/ko/System.Runtime.Loader.xml", - "ref/netstandard1.5/ru/System.Runtime.Loader.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml", - "system.runtime.loader.4.3.0.nupkg.sha512", - "system.runtime.loader.nuspec" - ] - }, - "System.Text.Encoding/4.3.0": { - "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "type": "package", - "path": "system.text.encoding/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.dll", - "ref/netcore50/System.Text.Encoding.xml", - "ref/netcore50/de/System.Text.Encoding.xml", - "ref/netcore50/es/System.Text.Encoding.xml", - "ref/netcore50/fr/System.Text.Encoding.xml", - "ref/netcore50/it/System.Text.Encoding.xml", - "ref/netcore50/ja/System.Text.Encoding.xml", - "ref/netcore50/ko/System.Text.Encoding.xml", - "ref/netcore50/ru/System.Text.Encoding.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.0/System.Text.Encoding.dll", - "ref/netstandard1.0/System.Text.Encoding.xml", - "ref/netstandard1.0/de/System.Text.Encoding.xml", - "ref/netstandard1.0/es/System.Text.Encoding.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.xml", - "ref/netstandard1.0/it/System.Text.Encoding.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.3/System.Text.Encoding.dll", - "ref/netstandard1.3/System.Text.Encoding.xml", - "ref/netstandard1.3/de/System.Text.Encoding.xml", - "ref/netstandard1.3/es/System.Text.Encoding.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.xml", - "ref/netstandard1.3/it/System.Text.Encoding.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.encoding.4.3.0.nupkg.sha512", - "system.text.encoding.nuspec" - ] - }, - "System.Threading/4.3.0": { - "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "type": "package", - "path": "system.threading/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.dll", - "lib/netstandard1.3/System.Threading.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/netstandard1.0/System.Threading.dll", - "ref/netstandard1.0/System.Threading.xml", - "ref/netstandard1.0/de/System.Threading.xml", - "ref/netstandard1.0/es/System.Threading.xml", - "ref/netstandard1.0/fr/System.Threading.xml", - "ref/netstandard1.0/it/System.Threading.xml", - "ref/netstandard1.0/ja/System.Threading.xml", - "ref/netstandard1.0/ko/System.Threading.xml", - "ref/netstandard1.0/ru/System.Threading.xml", - "ref/netstandard1.0/zh-hans/System.Threading.xml", - "ref/netstandard1.0/zh-hant/System.Threading.xml", - "ref/netstandard1.3/System.Threading.dll", - "ref/netstandard1.3/System.Threading.xml", - "ref/netstandard1.3/de/System.Threading.xml", - "ref/netstandard1.3/es/System.Threading.xml", - "ref/netstandard1.3/fr/System.Threading.xml", - "ref/netstandard1.3/it/System.Threading.xml", - "ref/netstandard1.3/ja/System.Threading.xml", - "ref/netstandard1.3/ko/System.Threading.xml", - "ref/netstandard1.3/ru/System.Threading.xml", - "ref/netstandard1.3/zh-hans/System.Threading.xml", - "ref/netstandard1.3/zh-hant/System.Threading.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Threading.dll", - "system.threading.4.3.0.nupkg.sha512", - "system.threading.nuspec" - ] - }, - "System.Threading.Tasks/4.3.0": { - "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "type": "package", - "path": "system.threading.tasks/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.Tasks.dll", - "ref/netcore50/System.Threading.Tasks.xml", - "ref/netcore50/de/System.Threading.Tasks.xml", - "ref/netcore50/es/System.Threading.Tasks.xml", - "ref/netcore50/fr/System.Threading.Tasks.xml", - "ref/netcore50/it/System.Threading.Tasks.xml", - "ref/netcore50/ja/System.Threading.Tasks.xml", - "ref/netcore50/ko/System.Threading.Tasks.xml", - "ref/netcore50/ru/System.Threading.Tasks.xml", - "ref/netcore50/zh-hans/System.Threading.Tasks.xml", - "ref/netcore50/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.0/System.Threading.Tasks.dll", - "ref/netstandard1.0/System.Threading.Tasks.xml", - "ref/netstandard1.0/de/System.Threading.Tasks.xml", - "ref/netstandard1.0/es/System.Threading.Tasks.xml", - "ref/netstandard1.0/fr/System.Threading.Tasks.xml", - "ref/netstandard1.0/it/System.Threading.Tasks.xml", - "ref/netstandard1.0/ja/System.Threading.Tasks.xml", - "ref/netstandard1.0/ko/System.Threading.Tasks.xml", - "ref/netstandard1.0/ru/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.3/System.Threading.Tasks.dll", - "ref/netstandard1.3/System.Threading.Tasks.xml", - "ref/netstandard1.3/de/System.Threading.Tasks.xml", - "ref/netstandard1.3/es/System.Threading.Tasks.xml", - "ref/netstandard1.3/fr/System.Threading.Tasks.xml", - "ref/netstandard1.3/it/System.Threading.Tasks.xml", - "ref/netstandard1.3/ja/System.Threading.Tasks.xml", - "ref/netstandard1.3/ko/System.Threading.Tasks.xml", - "ref/netstandard1.3/ru/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.4.3.0.nupkg.sha512", - "system.threading.tasks.nuspec" - ] - }, - "Volo.Abp.Core/4.0.0": { - "sha512": "ZMfrx0XAQB8hkQDr7yK7z+p9m48VmKxpEH0/B2k8QNK9/D+2CGa4pBJtwJfQocgm2lltI25NapgcIr5GG8bQJA==", - "type": "package", - "path": "volo.abp.core/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Core.dll", - "lib/netstandard2.0/Volo.Abp.Core.pdb", - "lib/netstandard2.0/Volo.Abp.Core.xml", - "volo.abp.core.4.0.0.nupkg.sha512", - "volo.abp.core.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - "net5.0": [ - "Volo.Abp.Core >= 4.0.0" - ] - }, - "packageFolders": { - "C:\\Users\\AIJXZ\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj", - "projectName": "Win.Abp.Snowflakes", - "projectPath": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj", - "packagesPath": "C:\\Users\\AIJXZ\\.nuget\\packages\\", - "outputPath": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Abp.Snowflakes\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\AIJXZ\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp5" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "netcoreapp5", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "netcoreapp5", - "dependencies": { - "Volo.Abp.Core": { - "target": "Package", - "version": "[4.0.0, )" - } - }, - "imports": [ - "portable-net45+win8+wp8+wpa81", - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[5.0.0, 5.0.0]" - }, - { - "name": "Microsoft.NETCore.App.Ref", - "version": "[5.0.0, 5.0.0]" - }, - { - "name": "Microsoft.WindowsDesktop.App.Ref", - "version": "[5.0.0, 5.0.0]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.304\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/code/src/Shared/Win.Abp.Snowflakes/obj/project.nuget.cache b/code/src/Shared/Win.Abp.Snowflakes/obj/project.nuget.cache deleted file mode 100644 index d314d67a..00000000 --- a/code/src/Shared/Win.Abp.Snowflakes/obj/project.nuget.cache +++ /dev/null @@ -1,71 +0,0 @@ -{ - "version": 2, -<<<<<<< HEAD - "dgSpecHash": "nH1pRrQe3k1fNoF9X1jN0LTmtNwHI243FAtfoHxtwvv4NwVPUgW1N4eVt9Rh3jt7mxkxf8r8b0SCtQuENreyPg==", -======= - "dgSpecHash": "CugfBKjayiD+GhmotTe3At90iFNx0Pi6XhbVBO993irp5Dtb+LKaC/9V7bidoTRT9vBbQnaftq7cMvEHm+sOcQ==", ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 - "success": true, - "projectFilePath": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj", - "expectedPackageFiles": [ - "C:\\Users\\AIJXZ\\.nuget\\packages\\jetbrains.annotations\\2020.1.0\\jetbrains.annotations.2020.1.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration\\5.0.0\\microsoft.extensions.configuration.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.binder\\5.0.0\\microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\5.0.0\\microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\5.0.0\\microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\5.0.0\\microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.json\\5.0.0\\microsoft.extensions.configuration.json.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\5.0.0\\microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\5.0.0\\microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\5.0.0\\microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\5.0.0\\microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\5.0.0\\microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.localization\\5.0.0\\microsoft.extensions.localization.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\5.0.0\\microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\5.0.0\\microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\nito.asyncex.context\\5.0.0\\nito.asyncex.context.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\nito.asyncex.coordination\\5.0.0\\nito.asyncex.coordination.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\nito.asyncex.tasks\\5.0.0\\nito.asyncex.tasks.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\nito.collections.deque\\1.0.4\\nito.collections.deque.1.0.4.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\nito.disposables\\2.0.0\\nito.disposables.2.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.linq.dynamic.core\\1.1.5\\system.linq.dynamic.core.1.1.5.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.linq.queryable\\4.3.0\\system.linq.queryable.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.core\\4.0.0\\volo.abp.core.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\5.0.0\\microsoft.windowsdesktop.app.ref.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.netcore.app.ref\\5.0.0\\microsoft.netcore.app.ref.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.app.ref\\5.0.0\\microsoft.aspnetcore.app.ref.5.0.0.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/code/src/Shared/Win.Sfs.Shared/bin/Debug/Win.Sfs.Shared.2.0.0.nupkg b/code/src/Shared/Win.Sfs.Shared/bin/Debug/Win.Sfs.Shared.2.0.0.nupkg deleted file mode 100644 index 36ffd004e05b998ae85e3313667013e9e275cfd9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 32597 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

ve^Q4&DR2(@0f;pZv6YLyi0~%&is10729<%b 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 E0w<%BXaE2J diff --git a/code/src/Shared/Win.Sfs.Shared/bin/Debug/netcoreapp5/Win.Sfs.Shared.pdb b/code/src/Shared/Win.Sfs.Shared/bin/Debug/netcoreapp5/Win.Sfs.Shared.pdb deleted file mode 100644 index 1fb666e5e2a766be57a80a73da8000fba34da20f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 48512 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 diff --git a/code/src/Shared/Win.Sfs.Shared/bin/Debug/netcoreapp5/Win.Utils.dll b/code/src/Shared/Win.Sfs.Shared/bin/Debug/netcoreapp5/Win.Utils.dll deleted file mode 100644 index e5a978b72230637d3f99d6b070482edb5e993f21..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10752 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 diff --git a/code/src/Shared/Win.Sfs.Shared/bin/Debug/netcoreapp5/Win.Utils.pdb b/code/src/Shared/Win.Sfs.Shared/bin/Debug/netcoreapp5/Win.Utils.pdb deleted file mode 100644 index aa15f20eb1f77c3ac88948a118974400c62c4255..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 21764 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 diff --git a/code/src/Shared/Win.Sfs.Shared/bin/Release/netcoreapp5/Win.Utils.pdb b/code/src/Shared/Win.Sfs.Shared/bin/Release/netcoreapp5/Win.Utils.pdb deleted file mode 100644 index 14932909dc976788f502df6cc349ac1f2de1bf10..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 21336 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 - - - Win.Sfs.Shared - 2.0.0 - Win.Sfs.Shared - Package Description - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs deleted file mode 100644 index 3b1554c7..00000000 --- a/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.AssemblyInfo.cs b/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.AssemblyInfo.cs deleted file mode 100644 index d2f7190c..00000000 --- a/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 -// -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Win.Sfs.Shared")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("2.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Win.Sfs.Shared")] -[assembly: System.Reflection.AssemblyTitleAttribute("Win.Sfs.Shared")] -[assembly: System.Reflection.AssemblyVersionAttribute("2.0.0.0")] - -// 由 MSBuild WriteCodeFragment 类生成。 - diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.AssemblyInfoInputs.cache b/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.AssemblyInfoInputs.cache deleted file mode 100644 index 1b13347c..00000000 --- a/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -4b600f20e9c1625b0237f63382f24a74701b7e28 diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.GeneratedMSBuildEditorConfig.editorconfig b/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 68b3951e..00000000 --- a/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,11 +0,0 @@ -is_global = true -build_property.TargetFramework = netcoreapp5 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Win.Sfs.Shared -build_property.ProjectDir = D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\ diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.assets.cache b/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.assets.cache deleted file mode 100644 index e92d2da9e6893af98a69ea7a53ec6acd51acfd14..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 137770 zcmdUY2b?5Fbv{7?2~f^Cpp4Xadr2n|FG+Xel5S5YA(k*Z+qXNq*_qLVyW1n@oO2E) znP4y&V}ijL+hA-kV2m-w2`7vb#@NOf%>R4U6<$?WO;z`-g#Y^8uyl9Td*6GNU%h&@ z`;j+pc)&gGagRs6@m@Fm+b1?W;Ir>}^hrPYi!XlvuRinj!y7L+@7k}df7j(-y=d!A zpMU*5?{O5;J^h}WuAjMOkoN~O8@Ana+wC)1XEdJ=XL^n1fyR73m|1K!``tlz|1fI| zdYydO?Dq3)@nAD+bQUL1WR<2qp%Cp^?ok86i3>%%fMt_d#-A(y$ zW07Nn$wAeMsuBHn41QFG$KrQC{O*t6lOiy@wY~wt_jmjAd4EaPc@G?KmET};a%9v{ zRfQ*H$Km&;^rB=9vN0MiP{}rh!m`HfVAyXorSe4cOonPx+Q2Ar=*K(IPr&nwmIFFf z$g0}4A&Uyh%KtPdKBs#X5r)9ts82p!K9O+~5|5B|<>1JA=1c(O!Ajf2Ym6#QON zTY(x@*6X%g&C2!DLb+Rz;9yUcV5vzF*wgUq)=?o!SB)2`6%xfc;8;#~u$+PCm(@~S zv%l0EcIW$z-ojGW>J0NfMx}~%Zxg4nP14|S&vf9Ph399~f;-n3HhTT;Fc6=V&Gw2UR5nKG9l3C zJD@MXbG?SYK!7{*lK|c-Nrb>&=zzTl&-E&Y0*k5U!Mwj5n5PR$A?O!7&>x8B=hdnl z3&X|sM1U!O2<9aY%uDfHt7}~t4to`=>sDmpUBP7zmdhtl87MdEHza{9q_Qgoty6*5dg& zwW_(WDAeySgiV2E=OEWPAg{%9z3xJQ?6va4y*5@U{TjO4&}(gxxjDr34#ey5e5huL zW;Iq&q&|1qbiIS=!4qPt+IdM#*4+Og4yK3Vx!$Uiijtb4Wo4+;`x8Ezrv|JJ4|AYC zd?KhYJ1jPaSfLCu>T+w;yc-M!>U??adxQgZ1D@-*;t4umQfa6I-sphbgy&jA7L|Oz zaim+P`R<{7Ty>irR9o;|Z!)i8)t`@$`U-^pNy!Zk*c}yY|Jm@?Vhnvr%sy);NHgk)*>?pc#{M0k$A4(QVzEALp5i11aTj-`zCkW z9gsWld}p1(q)sa-wUC_-nq7FVSLp zk6?#gtcPz;k(a~Upkr5B}V zbJJdD8@)}jdga^EWQyA_F{$u19lP56=pIXu#5R(7kkO| zVD1o^xi&ivz%HIE%w#ygZfAdMe$@Bubej4ZQX|jH;q@GNcjEaC=`)!Syrj02gf-Nl z`VQ~`o@>@pOE$-=@DQl7!Q1gV-&kt=iH`p za)?iLAU+Mx@2*t^JP;@8t9`gbJ@(TbA)bNfN%g!4XF>7~@y>MD#dN)ca&tXDQ$kb| z-Dlys-e^cY1N=e`wlJ7D-V0WZh>qOUFTh7c5(??|*^X|XgXdS(svtIS3^2X!pf#*I zyx6EQycATpuAl2bejc9db!#@{d~r6Po6G0yt|Hj-Y@}OcW)AfE4$v3i`4!8cTR1ok z;2Rj6y$8Aq8}M#Pgadw|1NcP~X?CzQ80L%f?d~k5M)S5-lWOm@AaJ83z=6Kl0s0a= z*PFvBN0tU(00$acU~G$d-MrKR`!YONSOlBC-r9??Fa|4WX#eHq4yIS&xymBg4{FSS zkcKeSOTE&8`zk!An_t*K+wRWKkEx7-65d|q;x+Kq4x-oKxn2#FkjCgP+E^66kosQh zfPEdFpO9?5V(RP8((I(y?It-^vRUaak#RRNawWcA;!-xOH{dzl^?~E+70%IVjbc}k znj?9mqoFt9`JJ`8>aHZ-cDy%p40vHjp8zxy)i+?#4F9`m?;TX?=3PXNA`A!Ox3<$z;pV} z8qO_b!r^QoZ=_-(ld16H+FIn{Xx`zVc_*G9mt1^ZtREV^*31-~9#*@iTRK-^%*wlv z6pkyL_q!zTcjGUaY2Slix+V^_I;&S@tk$f_sE+jW{rqr;ZTr7fz`~2ZyxWC&;sW(vSEr;Q*BvNzbe^eq+cKTn%bIeDtV z>cbkhK2UQI2sW|wn<+g<@kxo|Q}|1r#INJ`m=qLqE$mbe3R@jDhSJuO=D*pb$V-+IiJr;KEEmXd=7taUIsqs zaBo{|uc6+bjn^)>-vYP2%f_v65VNY0%ka0saLeQj$B6Vh;1KJ!dfonz>P9x(9l`$9 zYz&5Ns;BF-b>)&_3)X#(Cz3}@2epE?+7r)pjD)xwvw0cxeX#Din z&uzt?Fzv}^;uz=ct={(5Ea&}2@FL#7had6&ef$nb^gB4z7%a?=ng^f&=E;uN^EjA@ z&U2j^JJ|ednq^~Waq*h6aZq0Z2mV}#@upL{0g9OXkW#1 zw5)_lAcLQX8eamFjde4H^&s2O>v;y3uSwqT#a~j(AL1A5&kjun!gI_bQ07iUY;)A_V>6@@5U4|D;}zu_4yHfGb8Lz2!PHt@9EtWE9{4@F z*`{)FMBkK%)CAy9@EmiP(THF->_9QX%xfJ!E|!R;3E`BgFT&(VSqmF)z#sTq4z@qV zb9DKy!LjXFDnzq6i#<6w!}Y_nR;@dhi6&2m#EyalSLC-PST&9PGdw>k)-e?g4d@14 z^vCgvF4A$Xe=fPICiWM2j!omGhUVD8yE%9}%}4ofW;r%f4vyq69VCB+=a~7!hs5yc zj`~fp&_g)gOG;2p!QM@j^u9~4gD>iV+%l! zhUkuz*F-LtL0=V?FvBlYd@unJMXth5+d5xosEc^?ire zzu`HtHnzG{5qoger2~l}zPciSFO5DjImhq=2gASPIdQ^ZW5_VirCqP8STNhA?IVuq zhYqIyz;j~V1SSGe)RPn_#Cy6Jk=QiqKOF@Bh3CY6-9nILyOQitMhuMKfb}B>*MH-A zI<0oXA?MDJLiCgt-ZppglK8R1?|<;zPUn}+$qtAX7+3*KWoy;SOZ#N&>5<^QS!URT z3>?T$B#@utFU_j|7rz4)fZ!;eto*@V!d3!K->D27$Im1VHT9raM2St73Lt~!qrXIp z(oj+8QB|npW|f>{xF>kh>PBI>7oH!TrVC|S4sq8VhPEfOMsaV4?@{Tp6W~9smAu;a7mR89VPy2n(IQM>mh27PRb>}zr*_hcuriy8Q%QFT0jT7`ZE}8zlGJt;~YfC<2i9+ z$q?yN)>GMsfe?ZAYk*lGLyrqC!(di%4eim(AG@mUHl&xHyp-$QH=^ z7dyNGAbN;Vi;}HHdfwZd>!3If&ry44F^N+sM3|;-kD|!5nl2hS`QXi4YDGk5>h>sP z3}xe>&UZjvfaj>gu2W79Dz%Vnb&7M_W2W+^BMKmu>fB~Xaqt&9;4i{+;=Dy^wB4oM z=uokiD)@GhoMX7y!SFylC(hv%hR$d)?<4k72t`RtJ7orr;}QqQrFc$U^1$VH)JIsv ztkFd67{G=#?89RvW(KS*Eg0KEp!(ZFP5wRw2$%IlhW9|0&S#-rQuDSt1_cGSeiuhrW?W)maBwVOGh zSKv8uX5p`@hZid}A*+sJ^OGZ6DUqpGG==9u+R8{HLmYs`mawW&!wI-}Oc#TV*4=KC ziQ`%2;8~65#C-;Xr{C%{TfIg*gZXi;d#DO3ofVEKl$B#!<6v8h=R_k5d0%A7&2}%P z_O;S=5`mhbUW?~MBa4L~VOgOYrwztG2U_pox(?5Y^Dzt8fE>$Y9V&SW=!vO?Xpq69 zjF-~&5{s(Q55{xiOh{mXx6-KH=m*Uo<(ZJc1D7Sr7BGT5#8J>g@f`Elke$|W0Y~xS zIuo?yo03u~xjG)^aDF(R6Q`$|b5?lF#HOcvHUE;=%p)8W8}OW3aWz$eBI`B!4Q%>S z|L0x5=n0JrXSdAAwX@N|wW*eN5R)P}%Uh*J4F-qOa}=8$6kG6|Xr?&WXpi#YsHe?i zPP3sSHL~m7M@jcmQqKDZhxd(mPMl(55W=F8rnrYNZ3?SES5O*z_J|C(iVPgbRtLv6 zJSTRpgyZmBw~2{s!tOhPxNWmc%@N$>Ab2F6W2HdhNRD808`D~Z-XtBY4mqvtMbg`m z6jRwEDd)Xi^4@{JWDMDv!24jg4G+Ir1cMyS!9`ef5CMm-eUx+ql5UVmIqzMP_ioAi zX8euy5R5ku+`J~_QN{qU^c=+=2gNj=V?CrsA&;n|ONc2zokV9--@Oj!Tkw2qWC~3QrN^FwT=AsBsP7=J0$Jo?|=QTF$w-Idb$t0PMnrGl4yFz~4vZ z;7D$FkUSdC(bM!HDCD#uBC^voFIN1U9Z+IjiD>TDJa5K<_ZU1kQ!4~1YOcG8IQxlk zHjBhuJ&$$xKMv0^%c#~4xS8{UVTxi|wNOl)a=g_och=$z zKpcR30HE#gT*PzC5~%fVofC}n4xJI~I2gKkPVX`~2>WbXMMR-u={fN3tfHdDQ5$_0 z&dk8&IMi3IG=0?$O1`&9&MRu)!7#vc^7vM4He%fkznHXcqS$g2>tV{lkqjLqBRnV1 zsN}XM2HPq)b`p**xnhYc8q9o|b-G=Lq5miB*20>IL94IFV$ zJfWHfhBT>8=`*MEA}QznM2Gj2@EluL=}u$N%bSHcQp8S=H_~Y<1IO`X2gg(J9NYfa zIJ5;Ip%l#emeqr&I^3Uz=a}P#;f|w^Nvj$xt(+G4bcgRV@O(?^6mHZ#lpyad-9uc@ z&vZCG3(v`uMy%pnnAI1XS+O}R*6}hi=l^Vn|8wvhGcjvT8~#;C2L>iIHayos_B=c% zPaqItXgF%LEf2M*f{HxMHH_8B=R0U#fM@#eGW_n|D2u(hS@KDu|7P%`|Nj{LV*6_F zW|g=hUIY#OKi9>SZbVkWjy(r*Vv+894oAMjE!;R$Jk<0PIM-T@%*CHES*V; zTBO;bqUAe_#K3$>f}yiWKhHBr3=%(sboaSTG639VGFB;c-&x1{#&~k;Tk;%{?xfTA zk|m5)_El+&JGZ*U8lIN8y0wjQPrNWlQE&#k$6LaqC+0s$+7i z8biRXYUxWu2f{L0(-Y zVCh}lU1R-Xu(ID_3$CQ^&f+cyjAj zvc!{FwHSA9)v6$Ib!!&m$*oy;n-z=k=T@w{*m}jda_iMyX0>AcxYg<|uvRfn+**}9 zDKl20gt<5~3^BgkO7(NJPBBE>I+Z+tFOOA!*3|Xs53i`m`hYOoy8*Q@+reb-4-@&|g8llO$V)tS=yb!Dfs?xLkk*Z7I+Km>zQ4!Dh1I4w zB|G0skG5{b<)@V7B5xAD!%C^n^QKZK)+mL)A>y7e`go~7J1!A(HQ*PFt{dBc+dr0$ zAeJH#^eajvGdEmP!T@m4Q*Cc-3c<|Zl!+PDYZh;X7={xU0j|Uyic|uWIII`90Q@CM z7{on0M9kkNbP}fq`5UxOE$+r6s^N6ziaJUc7KPsvM=8(tRt7DGze0-7+2(xEnirb$ z!zxm#Th@q~zdjY|%Sp^@?7nOW#^%A zE#j5~%J86s4CzsjmPn%l-$SIP9~4x0XYz*Ch9h;@1v zVG)EqjMEp-oKj!l)o|ezMX|*xji05AqfH6c_=(7{-SEyevD6G^%IN2Ajto*7Hk_Eu zbX-Urt&-C%He^!>3o*}>5uu63IR@a)EqlcVle%Y5OrY5OSbg8y!18J+zMf=q%Sg{e zld&wq9ow+kbhG%Zq9IdWrqSYKakxV`&I*>N0LJtX{aK?wmmw%-zfr98PH=(@6R}gB zcNqm9E-Gtl+qtx+X#|eLdOwDh>hB>(l-5Z0Xa9;u8xsOD~V2h_Lj3PTQ^G zk@85R^ku6$-i(NJtwtwXf6d`_Yt-5BjKT~bL}*aw$f0!(lFDOxAZqD0MQndQ*X=j5 zRjZek+L}qIou;r^GLZ@{@qWqdxK)(!e1Ae!+bPMEKZ*A2vouFe{bHnCT_qRO_YReh zoJIz?7b=^=shLT%RHnEFk%cFrc%#NRIGjx(ZuiQ{)U=*-{p!}H#k6;WLe|F>+}X92 zVKGwM6{*oILL`i`DL5KVR9i~~*DXK68YRI*zCVi>EE>o7=)IKWqVY)(NS9KbBzqf_ zIvpy>4-e_>@$&7)(f<8%z&TmIV&P~h<$2}TG!vG=VJXGAo)kJ(DHvY+kYB4b?A=hM_@EAk|LIbD6R!$H!gQ{^WsN+W$Z z-}eDaDH&>!l3d_TVkRe)=2)3#+b()i5X;@VQjPs3lfeNguR>~t$)gVnhV_Ak52G~q zmoO-(8a=C07eUr|%sKja21^WMjE)0G-;@M)bT;~Og3QH7B9)rn+0!D`Zs>~)G)6?! z>tf=m7a6KKnjln^SQV>zn{C1MD)dQJT<24^Z95uxUR>8o=~Tsa(`|3fFANXm^uLr$ zHCCQXFTN;&s+ueTw>f(9+v>PbDv#y2<3|w_lPD0%i4v(MzNZM2L$A(K#AW0hyM}5l z%C9mU5oJ_uK+?*b;6RjQ%AxHf$z)a*m4|YvdZ7pxv2y5(s(b2-ieE$DR2$I~87rC$ zrMO(8(JAbyjt=NTX_YqpX*YF52N+2-5O(uR$8uGXABg8AV^gw$O?Cc$aJvsQ#p+=lSXLNu`ta;_W_l)>WN>r?;oGx6GxMKAosPNoy#* zJkGq7`g*u^mU(%K-=Y8%O7@~0>{DQk}D^^kDildR_h44OD zgTF7r-+SZli}Cj*_`MXrm*Mwv{9b{dQL=0yE5t!HMS?uNi3G)!@R4{W-k-0fa@vYb zid>t=k$M%rUlAf@T9!?e9FxZpeKo$HWf3jfp-qL{jK@)V4ZfSY?rF6)xyMJyy%yi; zq|gPC!)!=$j~kH&!}NT=v3Mb^tp*ofx@!I5_3JKOb={0MOkTLJHNXL@3#W$&4bq*V zfGI2OruZt)sOEom6C6c~R9OS7?WwBUmUW_P3w9ZOx z0>w7q7*1yxD%@Di+Gmq{WrsbtX12`}A(LvUN~~I+Jr5F~&W4i!b)6MC zyh|9oT3zD;{2MDaaRsH0!9# z*ibmMs~EKCAs=rKL&cZrV`SC3K~aus8O&i_&0y749?$_y`1Z1mBc_(x7cwg zZ{1lu*sNGSNR`l2Y~=v2#?#wDxhCOSGeyS zTSOu^*V}pqEjf0m%ALfewnaTonK2V)*SmG3`@P$8!3k7iPoyT(!8H= z(fp7(g!7_%*s?$@E_4u1>fy_TixPgJJx1`e`dt~FPQQHJOu}j1&+SX+OHf+qp zy9a^w>i{#S7dWt+7_j;+;9x61RC8uUMamCMaB$lhxY#K?@0eMq_Lpk@PKKghr4lf* zcB3;tLanM;sR}&mhzD2CZU(I0l(+!aFLvx};ZpnStf$z+U`6ls@fVvsh9X1COfv1k zB~`d)dXW3hE^uA$WuS+3X3qWM5R9!vns{K32@`3*tx+9}VcOfrfYj?}C6bA>RtOWE zFy6*M)>>!aLWj|?)kc8w%AG7f9>h!Vc82Nh4cW#@@8=$}jbY&-+hU<^Ofzi4$pQD1 zx0ePjTn?8ydnlim;ziS7MUy^>&#~1qT-uL)s{By5e?Uy)ttFtkga=N&ta*7h(>Rv> z5(_N_D;TFeVC)7~6Ip0UMlKDsUL=?m=J!6B{k$#K^RS@T1ZfV3aZTRAAXez9jByAT zPB#}yX4C*izFWg4f3bd@yoHn=D-7Nqkc;_Zx4#rpVFX@r2##xy+=CUc3WGNX#?Qf2 z#l`b-SmcPNV7(#T0vLjo)J8(OvoMAl3b`FAz%^^3#b*{bJi&lbu@+h+ii3t+t3w9z zb<3dDW^p*Njl+o(A!UagIoyK`?)#PjZr(v?jBbZ6Vma7=9}TW;9!!MWchZszaF_{D zVG0_o#rxqWVLna-om?)qX!|$^eT0FIURh`cY=euU^qG@!nJ||G>ajIo8Z_`WV+6>= z%mF@;0bGt+j59v{LEh}sMbZJBNnHaw*~;NQnZd1K)nxjd)5la>ojc?vuLTqjeCA;k zX%4t<2_KA6la#&a3edVPQmHD8>~=jPzLW$86oZEb|= zBs2&3dPUn*)6z16p5`194b%zTKV0ykNct$ijhJo%`kh zU(5j3o4BYA{swoKunOAfG0@?wo&8YLc_{-~VdZ8zLd!O8VGCBmkUjk63`>=jn;*=W z-ZBkYNM)~NFw>XaY}9FY#o7B%Web#~I*`u{0Iz09>eVm_WsI&&4GVP93Rg&7uVo-( zcRzY3J>6LvntO;XVB6lJ$O<2D3QEA64+B?NmuXdv3q;(8h%cY#BHGlPC4*@|kAWxYOp;OUsYGb5CSRJz)8hj!@QVp_I2 zqr~C7mBC5(6J~H=rWDunChoW}KrEgFNAz}yh-z2*jz$NE8-@4Eg19C#Y4?W?L<+AJ z8McC>cn3ofixq0xTo>o^vBy6%g-znsGtP~ouSclh=Ad*5x*!=ycd7dTX%s1R{*yLLzsYqw^MIerFzW3{`d;>OH&N4Qk3*%%CQLGo0#K3nG# zmq(Y$iUYu0*3V1MU%=m3CpytxF-+PoN}fNzyJ8ra|0{RJFi2mK`uTE7nG|t=ussX2 z8Fe7&*S%MVuTxiLn;;&%9(+ymq#-5N&Wq(F`ZwL?LQM7T*u1?lNx#mx#ujE}uGGWI z7$TJbpsSVHxCXw#u*6n89xScJ#nF&#!r?xzSVhAjPwOqyF-|y=Z%QQ8@5lC~H4+&X zWf2>na6V^e)QaV5Ki@xt37DBC>#O921*Zd}b}6C?$Mh|RDY^>Nptv0tg=MU=2ucVa z61rHP))Xah`d)VwmB~bh9nF&rx;cx_h!!#0GnfMSO@(x+Z0vOi%6e45pa1?*XP{gJ$3WW^D zqr8{`2y}<4qSSaim%hii$0ie!JDCQJ$9#;p6&;An{ZEW@%-7S$8C&Txpirm;wEQ*( z9f*jd`4@&}S7hoc(cqA9KzLpBh%3YfuAPJ3G?qk)gdR1{sEl>*0qCOJbb^7Ghp#B?SVR^{0ytiD}_K8Rx`4(Bho5ESGFU zF{QXBe#G!hr`0-afZrKXfS$IA5K~O^=tGXZT z>usS~%q_0ypD_g_Ha)=~i@pAmn5YGsx*lnS%5PT5Iq!SQNChw7bPiLw$uW`_*OYH{@&n~r9@6ITYrd(dqjpe^wf#xmp?*YJI-b1h8hVgelH zDkGn7c~LLx`y!I#@U}#`FG+XX3iU@Z^UO0-DyvV=Famf{#;u?*} z5PYnLp2@hyETXDJBo&xO5RjJ)gz z*MM^w_r#Gvac_4URO>eSz#PiKt&GjDyFDt9E-8w4zFE#T{G|FUM;#XD_nKgsFkrFq#GfTgUuM r2~ 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�knBG_g%-U$Vr-#>EIOXe=IH39?3--P zyB2`)Pq(iB3JCTiDH!kDC+jZQVd+V_KXr0ibr*qTrD$baw-mYaCCH+}I(t9A{JB@RE z9`eGfl7>!5>-x$Ia?FGuhyUeC>s!rnX;n?##@=0~y^#yql=-mUT2hq8jO*|2_d> z?kk1igY~l$>sz8QtY}o{$c)`JWH}}v%dt`xKBs~T#DDk0x8rw?Zp??f5o8hC+BSEw zaou7uZ+9GQW*a(<_R_M*eDIozt9>EKrCmg0QSpomVC#+ud!qnoEzU0^jf`GLxdt z^0I<-gO#bIDKU|{%1^4l)Ejo^`;FehQYPYIq4{h`rtQm3%pT}vMw2Bub3)C!K9!4| zjmY~eu9J?t$|hIbF*JzrHGa8TjrmS@fF^^s&+akXoGf900I~GfHs76R$+gXwIjmNd zn!=Ge5aY|dYTY`-xqZ&=p{e>THlwnRG($!$q(ON8(`XV)s=b#fBk zO9DzkQnM%c;B=K(`G|qPa}+YF6N}eXBCm20@$IgF`E&)M6%7M6!x)LKN@A$gIYksA=!!r^Ke-kIc_cV@l`^imQ=OCi~;m#y6U0?EW z=gUm2{F4-&S}ez^94*ebyyvOShl^pZBd>Q#-ajV~7yzbN#Hlqaj$Xl3beTO5tyf#jSq{v!_T-^!)8hCEy|?w=Z92 zV&xyLZ_Q_K8MfN3VJjabkJdaBk!C}HwSq5hIlwA^eYWx%rwCxTVA`>=jiWfd(CGKv zL1hfBO(KI+bQU*Jy;eKu$O2%Bx}2T}vL?T|J0#bW-R;JZ;vVyIgY>XBxDDS%JSMxN zUXSI&RR;Jm=$;Hjk}W@dDYyXTpG<#__zLUOJx4#40mwHwce9r$%QES0?0J>Iujw5YuZDm~QFd6mPe) zn0JQz8vRydww(`l*5mFYMKIXt7?hpdyUoY(qoYY@-(8g1M2Iyv(S|A(tsoy(lGtkJ zTmr)?5yc073H|L0=J%>&8rEQ%%5L_AEm@@y`i&LgWPaa~h z)?0miiFw1?UQ#6=xFTFRA%eh`pWd9}{tkEfiOqC>hhm`Xdq4aMsUpD;d9a11Z=39r zd!8@}lIv=(YVAB|%)RcQHOx1qYBZ3a7(OV0;g-c&gyPQU)F=_GFE$^QEtSpgg{1*D z584~+iKVg=JAd;gc+=uIHu;v%Vjf&>-hnz<&Pr_jqqwqJ@;X}{Cj$M5FEg=Xb7EHE z`N~=uBZH;G6B9}Q&|{_IA}FI|8hxIVn6c%Eg@1k?#ZaEp2DG!iE7FH`uM%+fW!(n~ z*_WAEUEpmaMaZJv-EMnbYK1jf!YbL-qpo@IAW1W*ZJCY;t?}b42-!oS(fuQnL64^s zRuCKsa7__nAPkg6M=m$vspjuqO%9^Uwl59r3@bXZ362g}jbDCSfY#zc#p+d=(ZbQfy?F{ZG4VZLdqw8v zA(G6HTzp2vb`jqM1gSzf1nniHorB1ouroh2M4jyJ9|{xWeWs8jTYZ^FLMJ8VKGl7< z5%VhO2)o;=lB)tF$$Y5`GIT+@bLF{9fF!Z5_r_8|I4l6iS^Uy+^_U0gCo`#jh`+u^BY(<=eRdbXk?9Rd(coy=?TY)g4E^~%t-?=LB|pv9tD?& zu&|Vr{V2Lo8(DDQ_C=*EQ!DKIw#!6S3epf%9&~Ok+%!4Nuy&j5Xo~rB)2UtjzrZcPa9VHkm>Y=){A&N zViMiK;-mn^U+xevqJ?cm8 z6qM;q`HG*O-ki^l=H2mtWiO>ALJ#y2(w+#@;f5<_9i3}r>igat+m%UG`QOBltkoINyIu9 z`=BrhD;*Iy-$wu@$2QCYjs9S5Dk+_Vh#o76ZrgQXDZkb%4wE9OQlx#f)Kw%?f}M~^ zs1C;YB5&3m)4}*N5J{z0q%do|F>1Ba5rGS|1{eW0hg(&SviFx{>7LY! zOC)sfEv`{Ta@DrQ^JZClHeq)MgWePdcsc0Fk%V<=r3}RU48|NjBfWk;phyk4Gtr%i z+CX?xkWnQrc<8%c%O$Rxj-8N@oFI{?nfGNS1X`Oa31w59>7CJQnX{GIBqS1QBqS2k z-R1$9=f;eLEEUfz!`jltvtu%|RFqi_-+T0pndRYIw=I*1vZ~>dy*10A)g|3&#e35e zLDiMA1j=ItHET__%3Uy_x~Y!PlP7@DXg&?2NlyeXly!vhvu_x^w(nM3pZe@PHsOI7 z(*_wfUB&;~(db~;xnCyCG#bc5gw^mZ_m|7Vx4|dx#zdyGl$i3BDcF@`V(VTK*bdyM4?4s4JCD~2=3-Bou zA=awPP~sGKrIx#lQqh=8RaLjCNbDRf=6&+*jAPVEfkcgR`Y5G!1Y7BqFIJ`2{255N z%iR>#p(Jwx`e7xcx`Wrm16hg9rDNHsvkMO?G11+ypNYyCm&9}oWl17TOjcrZ%~(m? z(@mR860K34pkE@F0I^ivSRlt@+wE=GoHLk*2%qE1!me*ztuIZ3P-vX&Kup)zla@N=ew%R0@Hx<(+}9Sr&FkmER~k`jT_*;{r`na@<|Pf0{h)Ssl2OWB^da)q0QG9G7MVmWh($9iWau(Oa8 z?$|7pfU=yaiEN&mBf}X^;RshBpX+rfEfKmn_>oM}FhUFmK6jXSE+T%4m27i&5vRs{ z#!yc(%6_hX?{RJ_8`Gvtd3e$j!IKO@x(;gNXfU=?iRj!&L|M-^S=FsgVirm^nsH^k z#Z7JFQ0}W^ai~O;^>~fr#!+i-aOpVSB83fJ9D3lJjbp)=QWG&#!O7udY;C0kl;t!H zn(x-Cvj%)-=uJo@Og-f!ELYUA^)#5v# zwm~{+iIC~N)Y}wry>j|nAg}6?#%mk4xJ>F?E(7TE!{&8 z9ETU*DTC=B&CM5M`$vPjkYm0j_of>sfpN8 zJ8_u!zVcl1Dcc6y7HP0*4ckkb^ZjrUoICo4MthJSL$-?c!F=whz5P*s6rCb|Xe2Dv zVyoHjie28upx4QVGzrZX4>o7S;perH+y`lz(U|RJ*8QR}o;sKJuFD%!c{;h>Ybe)O zp))7ORm45QBxyrxMht&A=)GSZ^d{966pr068014TF5S0Z7$lC})a@;a{`06Iist0a zIZlAmEf3w!^k|j}>a5_AZszwEKAz3|L3pC^N2{6VSvb=ssu8Gz{&S4h@n}lsKlN%S zGiR2WZ$3i+mSV!dyp{OZ&_QD60mhQkbk7_lCWwArIq7&GK$)21DkrYDz--sRuqHyz zUVcz2wdXu7v0#q!43zgot6$UVkZOpK=cp-jHMMw_j*R*%jCEv`WMIzZjGlFrlbvN? zNv!Dz2r+j#mP(nfi4}85<0)_m4Ii0fpYzeJ3VsdHp)Pm=sdJD-GJpsPRihf4LbL&Y z8zp8`Vc8xwF$^d6ocaq3>}u9uMEVpParQTRlf>9#D7C+(>eM>ONjRN-zAY?@drZxL z4zW1I6$Dm%RtL{W0Ds*sodsiF)2vR#j&U(3IG)R#%knEbbhOIfdfZb|%t6jNPy}IF zCAB`8(@PAol|t*46;R|j5n~oufwED-m%?qWtWEfm+h=r`W?7B(ozZcsu_twL%*LrL zJe_qs1bSX=+zNxqTp?tJerGooMEsg?6RVewa4HPdk`IP1NbsO|{muLo8t zmoV$IEW+B`+>bNlFz!EcS6CIuVVorQvt(Y~>%G-YC9s+R!wkxP?)Lr`TSu_W%(t2# zvhk7p8^ml)`bpF0(+oi7&g`?#n1p5LVm1#;_*m4S;+ns*#ge;~7sPmaN9+Csr?~#d z5cEv<9eFSlwKFY0U^4LLhlljxJm-V$K3sSJD_3Ui7<{(hF_`F`>N@(;%j0ba-BXK4 z+Z*=`{*t-g9wXj^$Qc30*>lGD#9ln!bCs}NIzEYXRCSG5LAO-3IS<1;)3S2ARpuDB z&BZ-akwdzm5;C=Y8BU=#VtES7hqQe9T<>Uw-AW6s#GFqlmG8WY+~KoYy?wGnx}*>R zwRxSETKNW8uAX`+TX=I4Rppkz(@hT%SC5<}O95F}S@<&$NmUl%6h51=)J6HK8MRGY z{^D9&Il8i|rE+>wess#81Bk~|xv-C+5;L5_Jwe3qjdK!Ij=1B}T#9(vVO7 zcSJ+&DF$5IlST9yT@Jx4#90;c1c_v{bl<^nS*CvC zG9RJ1A~j)2QI;Ag#<{BPsd`Xx(Z{>lsZ{RSX4aPdLfR{Y2aT1}PJ2}(tqh_rjFe6z z^wl|AQEtTaES(vZmr}CoSfdQd11DPBWFmFSWgKzGeNMTk=`wJ>mnWCnLCIwCInR}9 zh1bPS&EovtY3iV^l7~$e#`vG9fn`h**V~6xM!la*T37B;)=Sl27*x8;GwE!nGoq!2 z-EnD@mlsPT+}OtSvZbV8rFvQ4H??-b{;>2xBXDCFP~EaT&KLvVH}?=M(=8>}UT4Hs zof9d2P*WrEVX?ir+l2FSXWSgfNlDbz9LV!Y`6!A{w8uH7M(8v|Q`HFTrNxM-87bWj zbypj9YT}^gB!+{fveUd?b;bo}!>I786AI8C1okE;$)P_f3o>3BzY;aQHgBl6B$~!+ z%W+MkkC$nx?nhcD3wJY0W}HAMS>ZTF?~TWU&m4{fMojL!b-w26b;mN9xTlrzAkltQ zhK|=W%IHFwc+b*|Epwiw2xuHv zelg)3te~qUsv7=u?iqeDh3exmOwWun8=hf%O>A!U5z`2f%q~)xf>ckEQ{in0hD4X1 ztd2s7+R^CU!eF0@^6*jv$=e>)#zmFeb>H^ow><5_9GRe6`axv@{c)~tHq#hYSvV7 zr%02j$@-vspCXqgIm1cTyD3X4=drD$R^ z7O{HjIA0<26FbggQBug7^`i5QYh!RAN&skt3*;Nl%na?SBgdN1|?H}0aos7E0?<@rWA%~8=6j)Vpo_3 zT}^4mP^wbohSE7o^&U$1GsM-1mW^gHAsuB?aNQOC>tx04Qmdy8Q`|1SdOBefTt`|( z??jhTNk8kBRX>W_a_L9WQ}T?RHJ0XlW&ODHw0_hFkA7smB zgz1LSP|8W7!PUfQC_Rm%alOV7(TL-n06pleF+G&C>Pi=BU1M@aWG?4i6OmN=DQIUl z$fz>~WYo96@=USbW!=nbjb(i4bE-N|L~@>IpXTE)UA?oqNA3-$?Qm#LEC z>1}G}7A=ogZ#BiyRQ;N*DUInKfz>toA>Pf*BYeV`UQYD@+L%?^N!J88ZbLvd|1be< z`J%OpYt&?$dzyk}Pcw00s8`gqXx&m4S2vUtT1IsNTKC3#H7yIxDRg^I;i!oPYIG&| zS{44@tr9RziUNmnS{y8H@-=LXdSO@jkAG)k4ys#221cx&?1 zOvHs`(A%P$mcQTA8^i%o20ao*QwdZGJ=+{hMNb#}wIL0PCc?F9szDl(n6$kB#;)*7 zRV2zE#Bz~>v;ABy&Z6q^&r+JI&TNSp$ZwCKRE5ivDc#+Vp|Np%1=GV$3JI<*CW$J! HF(m#UETgaC diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.csproj.AssemblyReference.cache b/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.csproj.AssemblyReference.cache deleted file mode 100644 index ae4569ee086e6583f080dbbc815faf6c2511b21e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202456 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 E0w<%BXaE2J diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.pdb b/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/Win.Sfs.Shared.pdb deleted file mode 100644 index 1fb666e5e2a766be57a80a73da8000fba34da20f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 48512 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 diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/ref/Win.Sfs.Shared.dll b/code/src/Shared/Win.Sfs.Shared/obj/Debug/netcoreapp5/ref/Win.Sfs.Shared.dll deleted file mode 100644 index 375bf9802cf3b9fb85167fbf38cabeaafac45cd1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 42496 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 kN - - - Win.Sfs.Shared - 2.0.0 - Win.Sfs.Shared - Package Description - - - - - - - - - - - - - -<<<<<<< HEAD - -======= - ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 - - \ No newline at end of file diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs deleted file mode 100644 index 3b1554c7..00000000 --- a/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.AssemblyInfo.cs b/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.AssemblyInfo.cs deleted file mode 100644 index fad6c844..00000000 --- a/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 -// -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Win.Sfs.Shared")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("2.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Win.Sfs.Shared")] -[assembly: System.Reflection.AssemblyTitleAttribute("Win.Sfs.Shared")] -[assembly: System.Reflection.AssemblyVersionAttribute("2.0.0.0")] - -// 由 MSBuild WriteCodeFragment 类生成。 - diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.AssemblyInfoInputs.cache b/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.AssemblyInfoInputs.cache deleted file mode 100644 index 7f0ae84d..00000000 --- a/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -09c8be2cd98c35a5fcf9acfc6f2be68087bc2d7f diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.GeneratedMSBuildEditorConfig.editorconfig b/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 6b6a47f5..00000000 --- a/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,15 +0,0 @@ -is_global = true -build_property.TargetFramework = netcoreapp5 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Win.Sfs.Shared -<<<<<<< HEAD -build_property.ProjectDir = D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\ -======= -build_property.ProjectDir = D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\ ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.assets.cache b/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.assets.cache deleted file mode 100644 index 5e43ab5721af9bd336f2bd32848d802309219a11..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 138041 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 diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.csproj.AssemblyReference.cache b/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.csproj.AssemblyReference.cache deleted file mode 100644 index 447291012050dc83324f91580ac038d1959a45b2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202484 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 a5o2>Dj;T~&w3?P3D>qdr1*8C0?Ee8>imq4y diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.csproj.CopyComplete b/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.csproj.CopyComplete deleted file mode 100644 index e69de29b..00000000 diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.csproj.CoreCompileInputs.cache b/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.csproj.CoreCompileInputs.cache deleted file mode 100644 index 1e419b3b..00000000 --- a/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1,5 +0,0 @@ -<<<<<<< HEAD -a325aeab955c769b379a1ba9b12c53e4e2b1b118 -======= -8a6f228ed99df16b22ecd182ac4900fcaf732b98 ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.csproj.FileListAbsolute.txt b/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.csproj.FileListAbsolute.txt deleted file mode 100644 index 86bc703e..00000000 --- a/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,63 +0,0 @@ -G:\TIANHE\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Sfs.Shared.deps.json -G:\TIANHE\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Sfs.Shared.dll -G:\TIANHE\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\ref\Win.Sfs.Shared.dll -G:\TIANHE\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Sfs.Shared.pdb -G:\TIANHE\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Utils.dll -G:\TIANHE\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Utils.pdb -G:\TIANHE\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.csproj.AssemblyReference.cache -G:\TIANHE\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.GeneratedMSBuildEditorConfig.editorconfig -G:\TIANHE\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.AssemblyInfoInputs.cache -G:\TIANHE\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.AssemblyInfo.cs -G:\TIANHE\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.csproj.CoreCompileInputs.cache -G:\TIANHE\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.csproj.CopyComplete -G:\TIANHE\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.dll -G:\TIANHE\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\ref\Win.Sfs.Shared.dll -G:\TIANHE\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.pdb -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Sfs.Shared.deps.json -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Sfs.Shared.dll -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\ref\Win.Sfs.Shared.dll -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Sfs.Shared.pdb -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Utils.dll -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Utils.pdb -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.csproj.AssemblyReference.cache -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.AssemblyInfoInputs.cache -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.AssemblyInfo.cs -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.csproj.CoreCompileInputs.cache -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.csproj.CopyComplete -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.dll -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\ref\Win.Sfs.Shared.dll -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.pdb -<<<<<<< HEAD -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Sfs.Shared.deps.json -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Sfs.Shared.dll -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Sfs.Shared.pdb -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Utils.dll -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Utils.pdb -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.csproj.AssemblyReference.cache -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.GeneratedMSBuildEditorConfig.editorconfig -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.AssemblyInfoInputs.cache -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.AssemblyInfo.cs -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.csproj.CoreCompileInputs.cache -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.csproj.CopyComplete -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.dll -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\refint\Win.Sfs.Shared.dll -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.pdb -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\ref\Win.Sfs.Shared.dll -======= -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Sfs.Shared.deps.json -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Sfs.Shared.dll -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Sfs.Shared.pdb -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Utils.dll -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\bin\Release\netcoreapp5\Win.Utils.pdb -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.csproj.AssemblyReference.cache -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.GeneratedMSBuildEditorConfig.editorconfig -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.AssemblyInfoInputs.cache -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.AssemblyInfo.cs -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.csproj.CoreCompileInputs.cache -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.csproj.CopyComplete -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.dll -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\refint\Win.Sfs.Shared.dll -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\Win.Sfs.Shared.pdb -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\obj\Release\netcoreapp5\ref\Win.Sfs.Shared.dll ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.dll b/code/src/Shared/Win.Sfs.Shared/obj/Release/netcoreapp5/Win.Sfs.Shared.dll deleted file mode 100644 index 91be7d2bb2ae2a5aacd1adb742aef1d360f4da3d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 70144 zcmeFad3+T`);@l!?|zd&ZUWhXgplNBA?y&4B>|L0L^c%>H3-N~fS{-$8WeE@6?X@9 z0_rH^KI*uk21OJ{XTaT2F^How;<(|A3!~rXJY6@rF^=#1{=UD@`}^mI_S5G%=hUgH zQ`Oad`*z>4Pd|w~ioO1;B>p-yz}%tR;~nIo(93y`nh7uGO`E@ws=~j{ zhq@$-MxMiQa>q{zs$pWA+o=ZXa5>_PCcalCxx+_P4KFAJf)u(7YU-7z<) ztIJo^u9yu4+lDr>qlwtZ{i{Ul%U8@@TmwgKtDw!yL2^64k#WT+j?=v2pSH~rpNu_0 zq;a=M+mdwoZ$Vclnv2eqr1thm9!eli#2ZdaDDC7A+}d3vJJIn3qtKQH(x)c`{Fg82 z`%ww}vf+`^)_Pnoc0^YFUHvbtE9! z-6af)SUwqtKp4)5r)R`Y)tQE5lLuM z`_pY}=RC{Nc{bLZ`IO;d=E%RykwYEIslB~&HRc`$EmHfb5r5e4sh?oP>(q=v+Y*D_ z(#r$EZr#eWOONr_(XbLjWNL8Wg`?vD38mAWm9?rG4`#)qA!0BOB4F(V^$hBy2q|FI zLYW>bFm0B(l_aHjeoV{O2$R%RXGQH~z&U}ELdTO9#lcakQo1WiYHzVgk;i2J=PKBbNr?;?EX;H?8bRGb$GiyshdZ4GLQ>i~t zg9S6ZrRKO6?@paEHgu%Bqh4F0$HTM|vp>5e8*Mp=wqTk^9IO|f8Z1QN#EQqDOL3yp zLD0SEiP)!lTPurr*}7C;pl2q`GhjwXv%66B>f zr31Pu109bpG^J6@s?w4cmehv9GtP#LmSVm22@W2tg2*4+xVtE}mPM=4h%$feEbPu{ z&0X{~@UY*B&c;5rkomVnv6_~aU>%m=MI@%607XhnK|%X-Y^*=g)6s;oA+1esU7f?} z>(9cB+O5FZ8O7ko_ePiH5~ouX)s#jNy0m0`?E<(II5i8gb5+O`>U#tA;rNPl3OmtM zc=jCeOEo6^YK^fI!F!h>m{YR|RV0;8zzkdrNtga87Bj5q{+?LW!=-((V&lx@PsK8) zOI><-htdo`mV2D(N-=jks*F>N${xQi{9(jef>=H8!i>W4KA>er?afRLuJ{yFI})r} zs$Js(Py^{4e@PG{WVn7!k`uSOb4^#XM;?<*oH>m4|3RE6v9v^fvDaz8mS@}RxK*Qd zgc5^}o?QLWWoSuKr&O$nn3?{r0o_dTBnam!A5L#JZ(xl;Gqn zIP=I%Y-eJ-65H>wJ&J87w!dPl_!tmEn$h2uX%KYJ&f$s|t#QRK8Sk-1tikO|YF!$3 zebTxLo(g~MNc53R?+F4H?=R#UJP>W%>aGBQMaW6$82A3k|savWi+JOD~s+dzk zX_Cij4VVxJ?@do!k&ObsFjaXyr*re-OC?>~uWJG3GS{|Wnww$A!x`q`{P9Q8HhIHgJs%oBOScn=vqzrf6Sv(qn9iRKF-)c`UV_6xM;_@?m`_Pjiu)r zoK_<~j}3(-!W~y9Hn6)}R9m9!G@Q3p!?RAJza=zQ9EN62^_ax57(ez$>#>4mF#O*; zf4O7xt8spHkkL~f1scZ@tj5w2?ZKgb5tQnJ*Y7ym^Woa@?@ z!Py+=PxpLJ0ScV5v`2Fxed&?4aKjD6x>TZ$E%ir5~*>lSGd zO05U?TBOV>xK~9_tKeQ0uil6oX<43Q*uA;(Abk0%sRjK>-RJVy=QhTyEFLW-A4FZip!;3~|!y z)#5}iS3T^{#3E5Zq^Gc4>t*#7)&W-(?);~K5*uR*3K~%@Ed`=ixdmGSTpjao5w3AP z>SFtAV;&Sx#dR@7i*UUy!o8;X2CLv+6*pQ1_p11fRdBD0O;!=x-=tg(6j1HWF$D!E zaF%gBC_wSsn1TYbWYgHv*;iueq%hv$HGI7iC)yY*{Hi)38u!|O*Q|njRlIH$vHcs$ z)j$D7-;60JK=D>gK>;m8ru_I=lwQ9X)jH8FTKVu8^+az~j&f>cWC~E+7E@5r0JlTq zM1QAx4M6IN-k}`+cgFlFK%sU>;fVhRe{ZnZekKd2rdAGG%9L$0FkVXLU8fCzt#DJVekNK8TDmts5`^Pqqt zkHr)epm;o{pnw=pSVeT33h;O`=0O1p9D!~EDQHighQ^6Dsa{8b)DzvV9R5m~a0*c1 zP<9m*G{Cda#LWTH);X{v=1&0u)Xs<$pm;8(pnzWNw2J8SD!}7~mw5P zFFILwxNkF+dtdZ8?t@We3wnR_MD7DoblG2`DM)ZraH>{?DidN=Qh*{crl0^tQcOWX zL!`PPX1gI;2c(0msN-JK+0iPvR|US$V6EJ%0v|c4;9g^AyRqlFdN(#2k)m7+P=F#e zrl0^trit?C(g2q1DjeVXPV#%4|w0=b9-ILq9<8Ggt=jtjJyEp5p z@1>>q*{%+Udon)TId!V5!9@%1)F&3Em>)Y=p=_Wuv*vB+YW@mXaV$QC*1Q9$_FX{O zpO9jr??KXA-HDL*LXN(#&Obb* zTmK37o$C*9zuI++=HL@;DDNzJ1HRr~W(cz4hO7@2mfT`_A<^Il^zX>mKduwnteMCq>)G5s2N{jg1pvSWkY8 zjdLCLJe6VJxgKXQjpdr7-P~BpqBwKeSlZ4sHx|xb;ral}IQ2MDF&55G*n8`7TEgB} zk8=g~o$GOmz<#ys9?f-QD~sY35H}X-aj`qHjH9Oll;s%!d#^6+jEVJJW4dn9JU6DY zxR~1ajJTLs@=?aA$4ZaArydJDW2JMy+BHXU=;>Th=EfRt?|a^bdFzQ{Z4Z}}*J4Ev zH(<4HowrjwQB3*Lo?(xEJ5t)|M^8z5$(f!SEZE^rQLNJ8vLsIp7H7*!(*6r;?10$f zsTqW!<5$4hHCW8UJyTs3m-Mi!LuIi7r^KvS*265z+qEtBfgXq7O!Av<^aYE3xB&}% zYhTK1vAl;Hu%yT9u%L$u#Scsutvt~utJ6#uqwvuuqK8Zdd2Hb zkA3Y_KMhNR6YULS{qed=#Ez8>7}HFQsZ*yOVW;i{>=OJ(Vs*itWa0f<9rtQ%X(di) zH&7sY1kNMtVKDW_Y2rn^f-Hh!iY&c&E)>n7#Fm@n1UWdO*=g!GmS$e(dnJDWp zp{+wkJBNvF9WvWFOwn{QdR99dCc3p{x3gg?`PZYLj$1gVoddFI3wLQ}L*DH%!J50a zb>Kj%A#NZ^Ip1^~F{f;P-Eq|Xw~ixo!*SHl5;~4L1oa9W$4J|8tcKo><7p6Ml96t4dIxf(aUURBJAwJm6|Wwf&`f^B`J&VLrpZ0E3~twUB@2WC!7 z#$}E)wm#yFYy0EoP5axLH#U%Y(+_=`H|=u00`r#FHgEHxw|QF#F_t&nRnc<;>QM*e z4V}`w`Js=`o34+muw9LfxnsOQbeZM{Nz&Y@in+746)m=mcD9u*w#;_6Gc|2Ico{gW zox@ozg|pk*m{Khimr~M}V-uGkwy$nZH5aWpWy6_M{cNi_)pXP=FsH?BbGjIMo71Hb zV>#7xaRKX52jsK{yPqAKZO+Av6Ns+XZeh-7E>*=`THCpr6P~B(kkQVeK^-b}GSVTl ztpgLIhPcF##^xHX&yg3c%*~7Tr!_BZ1oNUF)HN^KrFsSCrBBOd2q5m`GdZ zZ?q+U?l@_FTgQq0=Q!zY0UakzalHb^X>i+d!a*1tCmeGv<1`=nE@nOIfN@%d9mdH6 zeQZt8`O7h3j6ig=cIga_mtL_&sZb*><#COW;=%m)!{;2%ori7tpl^ChPdpJqK&cjth}XPZvM32 zt@&dcnLoYlr1{gX*DEl8lQn;QChkGR?8R7m=L9+W2)hJ-*~EZTr}tKB`{I*Lfm8Ph zbZJ=AL zCpwg7_77(~>COJ>U7WDLQ2b>hoVw4nJHy~sGaQiWP4PxYK@zz&D<+%5K zFu!mLDSa;+@tis}ps}lU|6}JJdfQ4rySNVs)*KC~5EbKYP@y`yMI;nAD6MLK)DD+aO>o!HwHTR8uq7d1$vRB-Ul{u$==xyO z&tymgB==c1OfSKB>*stv*M{-byKHtm%WEg1K@G&ejJ zC4!Uv=||wpCk)sWD4e>fKs=?}c`kAvOvBTaopIT0LN(K%=S0vOq?`vMI1e<86VST@ zm&PYn20z>mhPRx&&QmFYGtPkk15vgjn0G?hm=o8k8#)oJZ^fj8dBS;^>Y)l zC@s$!1|a*8&&0Olp-J#WPj#JR&(!v1&a0tB&ZjwbvmiNj_!NX^S>0rZ(o?){vhh4D zKKX=eaCIL}#PiemKoDC#G=LMV$EN`F6_@!KDn}paD&4!vsZ(vDvs!mQc3u!W;Is&W z;1W1|F0ORlmj`r){OHFuZMYWKb>V^rwdnJrr3tZouqxJpeBe6KE-|g@Kol2>yxMeS{E}d-uxh~wD{_oV4>USc3y)Z#nTRY6_6=-ly4@Ys@FLh^nASDpBGd&|# zc_g4$6S1BKoG8xTrF-j~I@P8IoYlIIo9XOlfHS=`fT`nFt(dU4AT_8{oSj;&svkSg z(rLpiMuO3EpxT@JpIrjcI(U@Cp1alK;Uc8`a%?!I#nvYs5|4hc(Ycb{JHYGt{+tUq zW9#uS&#A+?IjryFlqT>zj9fH8Zb$vwkrO!V^t-L1yQ1Rf$d zeV6W??9{0ihluXta->BNBz`qu6c%r@8nmkIY7m?IS6tUJ_qEQro@zAo^itiez6_{~L2uhr)uN}mi|eTt`B_gH zg~i+Sv{l`*?#23g$(1dA)mmHnI&$iGoX|1&_?L+7%>L!Q%lq~2*JrS5e6koAJQMdC z&J|gS{cA%YPhGiU!P0rP>M`~Kk#A8v|G24AiHj~hC+3eiZk*nWoCH1zpZD@dF0MIE zo$(K!L(B=?wj_jbhLZ11Km7tmYrhy<9kzQxX2S_bm23h>W95F;Lx=I;^VHk0$6747 z+L9V<5H$?%6)nOZ>EtuyB3ld9h6kTyaNf>detDKy-CgB*xwrL7m5(sX{PIoi6Zw7_ z)BQlPU#`egoIqSa+)u2_Jy0B$Q?k87I>^4<-&go$>wv?BDe|W0n67Cu+%vzgU(WI! zF7!)bcf}f0AM(pCPkks&-ifMpUzfv$S(52heM;$p;xwr&p5Hf3-p^5M|6FZVFV97N z{PI9id45+J>(A-hRc3l~x^|ab?>D`=%X(m%)SJO&et9daq+go&vj>-TmnvG%8mvC$ zloS0b-$Cq2%mRjGPsK~c-Q|97O7Aqe6mhcTCtrQ&S((Z_d;r-m`Te#1$L1=oWM5Vm z9WE@Cd-IMdoNYaCFF9P8CNH92X%b>D8rjD^CEBltDOVS0geS5UwDUq3_ibH|j<$cdb`Q63wDt=G-&y*hr_LWn5J%ZldHXw*x z-NU?nn5FUem6!DMOJ3e>$mATOn!_0JfpSl|DH|fa`kdUSyA%yc={;N~nbR=hSF!8> zdcK~c{(&4Fg(p0UTZo_cJilV3%qvOheUzNoZ+((qzQVZsWq5&()Z}vYe5>cqUL9m` z((fxu(6S{cJ5a8wFl7TJ4>&`{ z3^rxuG6dQ7OLkw4(8Opn2C~1Hv0=Hk?-hU;Z{&9@)H*vP5NQi?3vU`7k^)p2sL- z`YKDs{Q|Y!QhH@SWk-R>H*u4Ui#S9Ymojm63? zx2&Q_+0~ZaLC+g4JDoM$V%a0C{dbl7TLgAGq~ZTnac)}oj%ZI6*wG{r8eXGuEWe>eBxAgOO~>qWF(olRGDMOlg%tvmS9dH zJHNlO4(4>SvU3x?r0B0gogE69#9pOM{5Hqm@e_6FIp=1a0i z$tIbv$(qR~n{UYSvEB`nDdt~fWn@#$cdYLVuiB=WAL7__<8ic|zrk8QOlBJVBmtP~ zS#46u=Fv9CWRoEzJm;JIIM2nVlx)9WZOcqQvIkghr8y#won=OmxiMFpqsfkj=W^3v zrjngYw$2>qXg=NEt~V#p))Cb&HneQlk5hv8_g+X2gtUVYBD@Y1kbJJ zG{^5R2sQhTZwMD&pLBdffViTpBFb)jx31e$v}}<2ejPP}m!-N! zG>%*9U!9+W{*6?vaZyLb>8$gCEIaccZejmfytxR!W7sXrC6>rZ_yrW$4hhoLCC5o#l z-#>u*?2lXG+*0u=tf73xMd_cm=m+I|4$bTNil-MTURnNmob?bi#}z5|Aoe1r0%I)< zhQ5RK??J_X1Qh=Uj9I@7{s_&>#4aI~PobPkoJ;%=81ql=;puRE!^DtcVZP$P1jVNZ zD3(AI^9%%o>O&j=jOkwwBtbvFK(VnfsYQSBkQ8XnC9Wb~MZ5_ZEBoY-bol&^_#p9l zpphvZU&b*Ne}u+sT)lg={+7qPdz9&s)%IwO9hG|I4(Y7;ugE9xxghNz@TSgR0E^Rd zP~#HDxwxbHBvIbQBlohnqdvY3MIDU)=j~KYdwqPpBh$1-S2KeV+||h~<@W2>Yl)BM z_QH+nu6SD+)AgB~HVo})UrT)a#*Vs*ex9biz9L2CGuYqfh}Uq1d@o7Yz$&h0@hj>M zmRe1pThsQ#X9F`9;>!GYX7UkY0rl=$T}*#>tzN-3a|G*ZAFZ%c4~$C}j+z^DYeZLC zw=P%XuHM5LzkQ8gvgLc&hU|{Th~{lq*UGpyzsd}_n&;g9vi8m?I%lTioRTNcl=s7o z{i=ta8LuQhMZBMQ3(-^1?2E|rohv#-WOQn?51-=ElH(gDB)yCXr$jEp8kop)YbWB9 zL5+4Z@gm}b#H)#S5?2vB6PE%9%JYHKoisefdNMG{r}(}9WXCV(WbXzRm3;~vU4BFd z^{fdhHV`)ww-6sB?jXJ%G?JdHN6`2|dM-XU0p}^H?=u2<`z5`e>3&H+`ak&VX#SG_ zxc{J^_#gCB|AT(|f6(hS!!OmVR}sIYKe>aSdcXX;=Ocd2z|+8GgI@sNi`*LAVS5hu zcC>8F$F+{^?F9VtW_c)}K1E^8`O2`4(dL9!|0m${Y}RFnHe#?FttgB&!S{8z)n|Q+ z&kX|{Mq3gW;iML;Mu@dd`smn|_;eN0+J7EX>s6ol+WqoDq3a)C`_Dap=<@;F@O2m$ zhxoTM>5+tdeDZMr?M&K{u)*8P@{%&~U~0_PGwHMrt*l4EPDh`i(0@CVdKDz&7rG|p zDqEMq*A-+s*>&!6t!$Kj<&Sj04Hf>|>Dw1->d>); z1;Vd&z_*&#_V@5d9Wq*2Y51!Sc>dPfs>0rmxWQ^!Al$7ZK15ko8t&B*U+r2}6&}$M z->+HrZFqV|+_<;whS22m7_3t6wroqmfsP~Pam#AJM#~Fi8)a1J z-yM&V3^v@&?ik5!!+N!_j>%(Wn#+PyLz&4(%S_8o4s`{aYgtlsr!zs8SeAhw3Ys8i zT6Sr1kK|+IT+6O4E(W{EvU9udbSBCbmR;OEStiO2WY@`%P_N`;2s z2~A3#EJ3Dwqx1}oNS-1e;tM~Kjp8Yun>+ z_IaN}V5?ll<6)VcN47IGu;Smz%j9CqdR7D?%jL>A&*iv}sjXfYRL|wI*)sK9AzR}- zSI7foYl5GbCCdtVoNQ-kZ`n?#7UwsOvL@J}C+>g9pR7%K?sQhltJe0$;N-|kdDq%r z9Go6GLq4=Dp{NVkXO?-2dPL5YZ)~}{2A6>SNVYC`&EP(fRpQ6pa;@*w9?5vRvLo5f z(BvLFowFp}+Qz_kmgHL7Fxbu({f!_kcTKlJk+Y?bwXN+oJaUcyI9t zBjYVwST;IRCsQmtyUd60Oir@w`-HKP)iT>MU*bft#j$dkJDqx2Y1yjGWT}^W%LXKl zjhrhNS~d#h&Xvn8%gEa4oF~^=7R^eQ^W?Xd-HLJza))L2qg;dBPqr?oE9M$`)G}Q$ z*T{C4afX~PyR7XIwEBG6W7&>`iC}*vb4T+6*-y4Jq@%f3KD9QT1#9JywdpLlP!5x= z3wm-#M=lgEm$Y@kq+Fj|C`p#xjvCfUnq^m`_KT#eWlqvWup-O8K>se5UY6w|XBSI_ zWr@h=B~oeG>B!3^GS0Fo$l0Yb*)q+^On`9T+ zI{4;>5SYW6_)9Yyj3bKD=bgOFMN%&EVF#4 zbDK=IY&B-&ZE~VzS71ioCZ}08rOT?w?Xu9a*p+#%~N+t~YhuxrWOQMprYZo_UT+ZlSg-US5|ALBf?$}X~X!O6(= zR(Zv;u^5Nn%U><4%1FlVzU{YcV8%}8F8S25akwhEOAc8!3|B07%VEp@iCo_;UObAU z{R<%1cT19G>$7({_ef{UZq81Yd!(ynI(zPwLd$ga+$+6Y#v|Z98PtXy)xtJ-?~~)n z++*y1ImI%a<@d`x%e00Eq{cF>;Q={|%+2Q?6aouH0kd(+3aaqmY(+OgdPm?R;F)EYo&AF5N8Cc0M6RmT5bmklti& zUbe}IHf#);o26|s$(GY2;7OTonH~X8$}HD2s7Jt4vcNJu0-ll;*0X>A4Uwni9LvV{ zzaH!YGPm|7xy&ucQE8HEtf$tuU2d{W>)S53TlPIN_>A0RnJ;mJ_Zj)4WeYJspOvR9 z)2oYT<#{r5kL)4)D5P`Z6?xk-ofEIf2V`zrUX{PQ<(SV`TsAaO6!X zx9pStkAn@eo;uIok`b2aJbO#VTBh^tZJA`5&a=1WL^8Jzf0g-UZa)7iXIW1jzjvg; zG9ABnO+v^fA?OzM?ttxDa=({ia zZ>R6cKD#3OTmtrHpEn}=TiE)-cOxIRur-B$i+mJgNt%g|TbO2|m1!nEX|ZW0TG=+7 zbM)IW{kJpeWt@*%na+a0yC&Fl7W`fAV*l0!7i5$~K9z?oJ2j(E}5K{^8m%vyA*h{%Jjz<6QL*`N^{R zIFEfU0euY<=eVPClJSjsvSmYab~;~3hGk0%@eQWrSvI?Hr}L#0lezVMDT7@b>-$ow ztY;Oj^1hUDmW{<#-j_1PvcJOimCUg0BiO!@*<>Gu^mEnMvdA+1T=liAv`ok0kgT>$ z$KjA%NVYEc=%Ag>H?qO9ra{T_ja+BhD9o&X$}N^n#LW7q++kVOfJ2dg$$gd`H{d(4 zM=iS@^?fT%mi-a+eJi^xTZ>Po-^m`!*5gy_ck-^wkcpon-%DAAX4lP?d5KIOZ73?t;x@jR|Jm&6X{JEnv1G*|>k55Ie3+nhKm?X<|{1Qx> zWjcO|rmJN-eu<{YvZISrQj$zB%cd7+fK`yW?d)L2x;D16gPCMKCt$VdV5VC(6RS-J zGs`j^_l{})=^Oy^){ z^Mz$P2h+^AmgyW!GX_tg>N=rwFx`YK(>a)KQYjzFFEEE%XGfvn0c1zeCc9p zEYtbY#hgXvp1Hc32G@ph7?{%4JW1w`QGt2cmfL{d7MRy9yAi!DFncZ2Q7JSZS*D{> zXg()%qZFB+TpLHa$OMjXGq|;TNu9ruG zkNFMR+TdeZOTf0cjP2}We&51Y!M2TTr+GSbeo9}HJWOj>c5SG?nM1ZwruMroWstdn z>^iwUbW2KwIb>OHSSp2us7YOI4j&EV!gnp?h+o zZEOqM*v@QYJGYJP(l)lM+SqPsWBXkT^U3L^iEN*l-Ob26v%|8pD>BVIb8?m7-@ed$ z1EXMbU1nY$pq`7Zt=k~At+ck!%0Ee+XCASvPp>0jdzwtM`>zi*D zjcl!NzNvK?>zi-Ru{N!5zFBK+THk#0yk%P7eDfDFx4!x2fVF9T3(P^ww7vzV|LE5G z7MP(fV|@$EC~MRD7MKavru8i_S6HU?Eil)Ux%DkD4_KSlx6nLfnbx<^j5@NlzJ=y! zm$ANuW{S0GeGAP@Yt#A`n%`Qc^({1akh%3OG~2CB>sw@YSf=$YGWAEb*0;!9=rY!~ z$gH4!Df-bBX!V+H`&{G2dF7 z*0;pSIJX9^Z;2UYnbx<&98Kodx5Uh~Hmz@|nQxiax71uYzO{c#%?&PN|CXBHTAS9l z)ZA%pTHjLhsbyNj4XSBW=v({zoUyWIBZQ8#YbG5Z; zeKqDLYt#B_%=?yUeKqD|GPk}OVyuSTV}4b zHmz@&dDSwlZ<%?A%&l*k`NrC`f6L9cmT7&<%^#0pTUg(6^OVb&&*kPhYt#Cco88u? z^({B46Wu;&ealUbWoK7t4F@gD%9#q=;W*n0vu%=FPHij9i)8LvUTfYU(^ea)HG9b} zkUV)Hq1Jq2%V`ZO&4ekfQC6CnmZ|LwGihq8?F>_GncB`YGmmSvooN!O?2!|IUbzH%pS;i~IT=re6siB71ocskr;R3N)o5?_i?_CFG`^SdeT?sC z9K7{dq_t~I$HvqMZDlR%VOcNBwr$mnidKKkfFr7jweXo+I@*_CmOU~g zq1D=eZwF$YGnp~B)UV5~HJ`ctvAee9xnk}6s*px&KX$I>+;X*cE>RqTPsB0#?JnA8 z*Jlk{?pU9AxxJ5SJZ(JxlSZ@Ql`k-(eDXQkY{ZSMdi?E0=)G27P^PsPu!ZsRf9lcy zum9i7z_Up@cJVc~*SOYreZ2fXE&J>K?IX9>v~N#*%>Rxx-v2+vcYT&{Ww^0Wv*gP9 z{Vd*T!vaANhYr{t7FPBgu(++^x;jd1wMMYDjW&Q0lST zw;k*MofiH-t7Q-S^CO;*tzG;bA;btF zMhG!Nh!H}J5MqQ7Bh3Fg08_A~VavkS728H^*J9H@A$v2nLTn}2%CYsuHW0rEmWU1a z+2klGgIor=7q)(o`(fW-j>ndWEm;OY9*Aua_#kjie1#+%oiu}GA%1c7cx=gd-!&0i zvJ3?u3VA4G+=4R0;ENkf*cRefw~oh_h%FhvcD)Yo!HzYP(U&RMj>9%xZZ;=kn}O{l zY%{T)jBSCOFALDG1$fJKfs6w`(kz5-A#@9&TL|4k=oUe@2)aekErM-|4BcYr z7DKlfx+Typfo=(OOQ2f<-BRe5LbnvUrO+*ft_Hdq=xU&=fvyI+Wza2yZW(mTpj!sr za_E*rw;a0V&@G2<1#~N*TLIk)=vF{i3tcUAwb0cUv!(j{%b|@FgLQ)R^WKEhh-0- zl#v6Dep*?;x^n2>!)Tnz9<8y=49U(n{mq`N*UV#*pZ$*6BV)?k8ErZxRXLAI|K7(q6O6toFu~|s0~3tiRhx#soae0ZeA?wg;M9uE zz)^!AaArbpA0@*CoXANR}m+~~QcS2?h{ ze}B(v+qOpsjPb1T?5a2&KDShyoZ$-3RM9&LNoa}8ScvF9e!VQ{{=$(-B$2Wa@2)U&-pyvse4@)aMe=n5Q>-xbfK z{Bv-XcNcr486M}|BTI)&@@}Q(Y>v)G&xDM*&`%z?(7Vf%m0#<)K`R!FL@RGgT_qjo3p!vdB61$^7{Wp<+PF*!dc z6C>WMl4d>cJ~AKcd$a?b5mf%u;c8UgEy zoC!W{;WTKL4$*pVD_jnJw~Whtvpo0r+XM}A1w69MojDIeUY7p7dC2HnLJt{zBWW#r zeGPFN_1mZ)%$dA{@(!bKW9=~dHr5WKZ)5E+`Zm@Mqwh}cF#7J~4x?{l?J(!#othm+ z-%;9O^lhviM&D!FVf1aRD#m<>?|`fiuk(N+P`sza>h5NkQaTJVcvsO16Y@``ExFFl6#q01KQt+|AjGkrmDRcC_m@-G-iz%aL1jnzDOwX2z zZh=hCeZ30;{n?&~XKwL;z);pT8WBzkjCS-*nbD5E=Q5hnMmvIcSVl9>P}Vqf_NK_3;cT zcrh@C{&VO*$I&-p=FoEvJr~ounAXLNwwQWdKhuIMITkA&U3(+m4tYhvT~eHJMDT#Y zY6Ce3@*y-Fo~72KR88<2%GW?{2;M~bCdeCuw^6%#a*sOUWnDR1DnU&EeVVLuXG`zB$NJhghl%rHaCb=xUXPy3 z&X)05rFUT+n-tc}Ob_?*>KxN^#O(Sg%Q+2OKtJx6_GnI(hV6svM85 z;XOP$-+Fj-?0R@~ZuIv&5Pl@w!=ttL@aV|)@o3BYdtMK{8_x5bT>e?O*u#E#^i8W` zPx(M2eLUKuKAsB7dj1{C$U_-CEtqMnWdfq* zn@%2m&#RM1?&*R~7i7OHR>+nkEWHtR)(|>+!BQP~eH zlTU#CS+)XYQ*bS-ajN8sq@WxLIR&@qpGb7%7+IKw!VM@1SKb zgzVtm04=qFGOl4EUrW!MiMIoTvX%b#(B}dAJWT78#9hQaz#yJ|Qar>ye#<@{W*^09 zAH7EV7&O|)M5BF7HrmHdM*EmyJ_F{MuYkGcU%(#bFtEUA%&0MFb1~&IbaBmn!H zWZ+QhD~;xMEaOaIoJou`jd7+k!c5Z{{?#T6ILCAY&Nn@Pi%l_bnJEXZH2r|Me+*o0 zh5^?y{>6;H-ssp}X>{zaVZUx*`y1(V8-4C%Pw%GwAu|#Y9yMct+sp)D6HD!&&kM}P zOU%Y@X5%f!d6#iMr2GlxgRJ)p)_aH%4$~@*_S)-ctAdWUD$&twCp(($PL5_f!_jQ# zIGXKTN3-3-(QKDFn%mxt(4P^8Qd3FIXllkX<|OK;Q9qsfnbcRauKBbsrga&uD`{O# zO#?M+skxZ`>)Ey|*|uxgwwoBCk^Z;Q|4#bfP5=Ap|0sR7(Wi+%FHrLmHM^;Ki<)<- zX{P2w#`%PCzM%CGt>4mmm{y-xbGQMRA{)J$lP0gut{vXVz!$v717Gr<1l;Yd2EOK< zo8*zVz1Ji;@}YMjGzYzlfnRu+0}px61b*w)`E%G?2NYie(CfPp81(7fOZ4gJB>S}9 zPQFW%%JG-4n-a_Mn@=}%D#u?J*$m8=CSa-T0``+Y=W=|m%?6H=DDY?*0GvwwNx&-n zU6QXdX90iATmwwX+6>Ih+72wpdY18@mD#9e2R@TFCGLZMP?i|2*O&`rTvjgSJjm0t zDk)b%UYIotcy`uoYA(R%!OODt;S(cDIf@=fBji!8BF-YNA#NsaCpOb_A7$~dUXMn| zBUVyVMR^u+4RJGZJ8>V;cv*^AMXV;yA~q1$5F3e`iA}`q#Af0?qWIVsVlFX{SV^oR zR{ONIvnV%EUPHN&@@C50iTjAguQ5aZ%jAx%Jj%t8o3g4XkAwVb);Ryw@=4Y#Y8KFQ z4dqMdxta1-%G)XLf}EJWkMaS?1=%LRS^}5J@a)_GM}eARXl7(rQd33EIB06Kt0^yl zd{uS>gT1Vlz?F=ufO9RudbDjl?EmGf~p%Pi!DI5}S#Vp;kl8CFT(;iB-gE;w)kV zaSgGNxS7~Q+)ivJ?juSj;}dg%1E4RJHEiMXBEOx#D5EJh>d67z^v#971! z;u>NjaWk=rxSiNc+((pb#w6wv^N3Z%S;Pk78e$`HGjTg{A5n4`hnP#uBUTcth}Fbd z#0KITVk2=gaXWDz(R9(6xx_qTC9#TFO`Jt+Ag&=c5;qf@h}((#h^8xJ67z_a#42Jn zaTc+GxQ5tB+)QjDZYS;|nr@6q%p+D3tBBRaS;Pk78scW+c49MeA5n6dNn$QBk61~p zBF-YNAvO{>6Pt+JiOs})M9E`JVlFX{SV^oR&LXZMHWD`zn~2+q&BT2~>CTwMTw)%v zl2}EoCe9)@5Z4el6SotaiTj9>&zQtqVji)QSVgQR<Dt*AN?tn~6=t?Zjr{KBDws zd}1y!k61~pB988{U#`iTMR^Uek+_-IMBGknChj9j0V5N0iFw3IVij=~aSd@Zal4C! zT6Q0?vPk7BVl}aW*hp+5HWMYfNh&*6M%BNX*g$L~HW8bNQoKplcCIX@C$WLpNNgfD z6Qx9ba*371YGMPik=R6RCQ2#&iIv1^Vq@thdA4&Cv(TJ7A>H(YNy!1xOO~huR45TNql2}b_ zAT|!%B-_%P2kMn)!yxr+BsLM7iMbW3Z>acGJQnO8SIE)K zT*{S@7i3mau7-SXX0WA~q9c zBt40h#A;##v5DABlu`5~RuZd;4a6p5Gf_sb8h|NSflAgp$Vl}aW*hFk5 z%2D(rRuZd;4a6p5Gf~FSlUPZtCN>b8h|NS9OHX1Yv6|RGY$7%jWgI<;mBead1F?zN zOqB8TBvuj|h)u-mqt)6-Y$oPTP)#*)2A;89XA(VYJr8+?daw2#@J4)Ne5d&4`_A)S z>#Oo#o9r!-*LGVEE^WZ;&hl8F_D3lyZ3v~(Qhe|@dLxV!YLdS%r zhGvASL-RsQLMub(ggy_g3;PoOnox$jfCf)uICwt8BOQSe+^f{@@>6lopcC#`cE;Vw zV(E=<>HFe-WIudEKLFqSjszP8HV$_uaW6t9;@kOS@y+}sd^0}<-w7XwZ{w%S5i$ec zz|X{8%Tr}I?mmpb_vV%O{(B_8?;eHkvPa{)>my}3zW-l|Z{kQi)Er{MI_oTuk%>v)0Q(hu2V5TdH!vrv@>9i5C;X*=?kevp3_$+6PXh3yiqsbTx=gJp zJr(~tI0yREin;^u8yp4B?xFe%h&OaAho*v_^=17bhY~A*b(!ijhH_b!$`4U?+w($# z`nd7kx+1w+b}RM%B(?TngoP~YmU^epaOi(3(i$&LSA3YYmz0l%?6#qVwH#nsx5k&K zDea>1<8$J+AztIw;UF`esyG%s5l0Q zjOqFu?7s+gwXY?<7wucJhk0;g)@A4{`d5W!;L~m@|B=}kpQD=Pg^Cf*fxmM;#LuV? z2dQ-mXZ4Z+%TV@lj`c^JnWdDsG25dlyL0utxVicY=ggHHh4#^A7N3Eb)f`hd=9}3% z)7-jTjXQHrW&HLvp3FAC&Nh6ISckIX+ST<^T$}Idt{HGOS8}dyXYCs~qXzJp+Shv> zeD?Ra6!>J;<-oHB>XG|L;{P|YyN(*Hq`I1V@T4Ao9~0dTvP(&B1wWA1v*%5J3=l2I#@v?kcR>ttfHxqhXWma1JoIEB@j=d3;y~5*3)#z zVUl^GM zbmTOgGYrlM10c`AdBfoELl1&H59bcN;RJNB!s}l^SO9de%In{1SOj#i+K+&|6zE{J zuYz0ybg<&bGkrLB15| z2=0nPUJrEeecP#!F9$mKEvs3OHv%2}KGkfuR`bwCHtP2n#(;8&XFLEeOX z;ForR4$g;*Aa4dbax1c8WDC&2IkE=w?LY_T%H@#n06I8d)RZb*&Zl*d?*}^a2js)x>{<``A>_m0EPEd0KO!FnXWKQ9A4OIS&bk*s z-iE9g{3^_akeiSdgTH@p5#(o(6@y=IxdieKWChP?0v-Hag$p%y;<#8kAH-V14g>2#1&w-A-i)Rq= zyXQbhn(<3gM)m<6{0)W8koN=eT@JEn@OKn$g?s?{Gx)m+w?qCE`O_y%?tuImvZ%im zu@&-{$fA+2fOy^%Sv2_W^B&0GAd3dSn{XfG?~p|!-vb@_0r@ldO9>A`{t5Zhmr@>v zY|JB&9U#^UJe`EK0_aG1eh?P6j#>G0#Fy0Xl+r z-63}ZI(YN^dB_<+2XB+_f}90(@P_!GAm;!by!HJu&$-0Lx5Q8%-!kl{MrcCJ)k3_%mK(FfexNp{1ozNAl5ze8RVmY zj*K^-Lp~bl$OQ8x*1X(j;qbfANGDMOIw z10B3~m;iYp5Nn!Ag1i`rHO+K{yc~!%%|syA0S4aC}ozn_7%3y8JL^n`ph(82fOy&zu;bmThI2lDkmM{Y3v zAm0ddqfim|$X?{Wm5K0NDwE*3RHndlsZ4`sjZBAUjm&^&4gR`V zPv9x=tdVMX*2rn_tdTkJTqg73xlH~~d*2=%*HPwK-FmfTS+QC%7?2&!44g4TB5cP_ zOhys3q?X;pdPHhj7;KbQ_qEix)h*v{ITlG4bqJ6^OcIhz!Vs8*;SnHjJb^e5*ge3& zK=#1SvdhfES!RzV$IHMnyOTM?GPCUO_f_3j_mzRO`^U~XEBoH6?@_O>zWVB`x^-{A z3!ICp0M12K1m~h!1m~i%!MUg^;5@EQg7dg~H#m>08^MXw(cnC;R=|l9)8IU=ZULvQ zZUv{UJ_t@5zh`zC?jHuHt?mS;tv&)yTipZBvbrCfW%bA4EUO2=SyrC_XIVW6&N6;I z>vG&b1_^KR5i3hW9uAP2<;_zT5PJre8EQHE(R*+`P54BeA*I$=GeNKaPDN_FU}6*ih>ot&g?7(AwU%rR|co zMBBc$k+wqHO>KYD_Sv?_+O}^P-|)^2H*I)f!!I^O+7s=C_Qn;yz2X1kFL*Wi5D&Kh z7rbL9@00kje~0%*YH^>(O9H{PpKBl4R*QSEeO|t17%bxtE+-$}S@He-Dx{3>;|M8|3?vd@0snm(R5~NL_-sBOztX%Ga-h`8_DOVA{V5Y46YR zMo(=!-h}sEg1D#JAIE!)LEMAw1JWPCGRE;Xt%7DY!^>@k=idwuw;5jlCV01-;PG#Q zXS+!q#Wja(9v9xGfV~=qCE5oYvme$Y1-tN8jQDFXmJeW*jzG&tF|x)mqNXsCrr_C6 zV-!te^h{&aOk=c6W0c5?zv#PGyd1(`tKNclP#aOgmaE`#AtavrT))H@`mwS$aNN-G z9*oet486<17aRJ;2HtGwn+3-2WU4nvd2a-s&lz~$ zzhz}#{j{Ni&Jsz%Lm11p|N8z+W}#zh>I~4HJITgnwbe@0jr4n((_Oe95%) zzeZ&6aL(U|J{UtZ^D0&5Wi2_p!MWb1Lf6--@er0T_(KSg!h{8K7<#;i=9?o z(L-uabWS}G&EqwUOBre+#GuF4I&Ky zVT2W2Hm>V%VMic(6xTei&G-ed??-;r{QXFK%P%9jme%M;TV50WDz2a7YL8tR-GS?h z*zxEOT8~F}v^^gEHm-kc`(E_64Ifi4Zum*Gwf!RvuWtWI^pf`55k4NB!F6{#-c!fU zOh0yF`myWMkNuNO8Br2taeD+|buw<3{b2Br$cBsDoHzAxs1oV+i zaXC?5E@t~@4Kk6-joDL+xlF}!asAnunW21nv5;9FEM&^%%b9w@0-UwRGj?Xds#rF; zfv!ov6Xh+<%rHPEJFY_n#g5rv)8(R4JBcNE=PoBEkwE=ed5605awjH{Nwibi03HY7 zH4MnzWFN8$sHV%f$H`)^6L}LN!%M|1f>df@v1C^gi;I(%eIlQ=h=T<1i@dW-6)QKG z$<7lux>P7+W(z`27MB(*+kviKvg~CC7_)PhZRPwp$-!hkkSQ~VVPuwA%H@&&P$`Sd zij^U&lF1hgebBZtm3*mqAs$`tp-Rc5IeK8)fvI3$&?GP<7ORSD2^NdZ(!;~@QXrhJUO zoT^w02$LrlZL3^{xQQGr6$)0C!Ur^AWpZQ1!g2sPo|&_96IOYtKzW0UlJ~>4A_t4; zBFi1ID)Xh>z*4>dJpqBZ#Pu0y0-==AEOZ>8p;@RqLZ1KvvIEJLn^vY;GHb?cF@Q_u zJk@~^JUl}z$v#VVrh{@k6c0$AM>xa%5dFxWH~SJNgJ z&+bYuFIw8J)SA1UyHu)JxqO#n^bo1BPrGJ-%W^m~r~W;#GTLG>s4;smn%9M*cRJ`@ zh=>V6xmvRvq4-P*Xrm>2AtU3O0t?c-LF!o_B&oALyVNz-vRL-YVR?Q}LGHEDOv?Dk2?Cw4ztt5$%>DQny=En0R(OWd19LhG>e3PFb_(X?7kz5L41 zoc6LYs&Ax}TPj%nYIHoI(gTBP@X(-|7)uPP!Nllb@<0-iv61lu$uwg7$MB`H{bPk8 zHJLb&RLRlA0D{Q`>1u2=IWv+Pok}NFYI1TasfH(#$+sierzVplDK)r1Ie3j4PvJH? zc8yBDEuEYgO&m}Y$@J93sG1y{NQ|rL)VQ!rjjQxTVsvsiIiW_A2XRkNsNvK>r-(^4 zHmTD4QNqmrv8f4wC|$>dOGo!74h$P?dV0*nlBs?B(M44csE|Sdo-d?)E($62`h&S=p>#q!G31~rpUzk2^{{udtN|17E9f6F zg)tBV%eu}kez3Gutkhwde-McgWwOvowWkWIppau(8#tvY}B-M2MIo3B_ zs$>dMIk&1hQ4r^YjO!*j>8h|5Zfe&tR4B#+MoX3C!eV9lKq;&8Fr($H^mZyIU5#K) zdOT|oU^BSECEK=&%qas8AUzK~$$`|@UznN67xR^Trr;u($Ap!&@{5(}`Lbp53S!8k zt*arsz^vF@Q|y7vtW_`^P8_bN;FtxCq#>JVUSmj{Tv}W#08b5Ug{hDoe<@@TntavoL9De=;#isj5v zYpgg}T3F;7LuZ{Td+_|XpO4Jdx}&~bM>g6ey!E+DiLH~sjU>;>J zV9eIu*!~h+vP4n)ea--dFCc3NKb*Gn3&dl00p>_ulgDi&bIdYpL%k2kWskT0cp!hw z3d3W;vK}c_Tql8_fI>VjE`?+dQrvs(u;|K*@1jx|Duu$BJw1B&ScKz>3X?lw+j*?I4YbeB5(&)(AT9BSBxB?K2!|7w zjJfmbAXqEEucT)ERI>YhC0$9gnsa5~cpHLXh5-cg@cB%Vg&!u}ahrtb0;JTqO~O!% zBcD66-AV*8SZo(c%a(=h5R5*N&j|M0owyi1mF2#yGMbK^+!Li^NZ>takzG-2Gjlzs z%$5tZ;drn6q(!B?=md5+;A7F_*^jZ0B>S+x0BG1QEf@?;p{2NPW9V+;6k&V;%92lS z#i_*XqKUD!^y@?v63OQzSdbAVQSvyQ;PM6#i^ik~l@1i$K@p37C?lZsrRyv@^)u~K z(>BzNgF!~cQWo|B@s#X*(7swDvfxBRtV#eb`-!9QH>F(hJhgVv2NfKpr6_+6P#1V> zX;$JsOD3@BLD|?g7c+{XD!|};rZ}ggW)sZ=0#?FEfMts_CaFCOsXYAlzO3;*md+ndOv%ZPie2mmPU{`RDwfV>~$Xx zZjS>| zui+i=N!D>Z@^goz%Ijp>7rBv>9TuU{aDWI{&K=9d&u|nL;K@>wUW8-f6 z&RI+8(d4bIgzhY-gy;fH>03?-(GLq9N}>sj_?~r`?QESr2e-~!VtxHPXJ%x?D~cnJ zU93dKJlA$CpDkk+>3k%YX^KYLg|KHmyEHdP3+&+%<+8OfTUbu#D?v0iq5YP}OMw{^ zDqph0sd|$+HCKdUduhCFIuDo5*pQ5?ogQJIRng|bL+P4Z_Wpb>XB9oXyG7@roCa}v zFe|BgVybwQkM(G0GKF=y21~`G`MD+S#Cw@=$JxfdFcN!6JrPNc6ILN}QetI~?oO{yS5x{r`SMTJi z3tGuuGvC>IAJ;S2$&*=2I$nGb7G)}9B;0FsiInM#U6k6DFh?-r*1=eEG2XP|a^8R( zWtc~Xco1&c(9DU_lE5|A&pgM_hEgntY>7zk=$LdVgyG@cJr&oGc{Exw4GrTlNO>OX zoRjng^-c;Qo?xK6<6(jj=Ql%R(ZQ`4saFjO;HaFzDR^1>#+5;qX7O!ny>BDcHc`&y zJ}i%5=vIlUNO5{o2T>{yv`EGn+*3ZwuhSPt-1U0nQnZS>piwXvoS=qWvuJo^@(I1=MRVPEHjkKFBp%!BIK?1Iw{lJ_dr9>nGz} zR1ur)8q02x9W4=$j=2vA75d#gD^&icgi7y2DAY#{qJ_0CLk=ir%sny5S0co4S*6ml zG?1t)4zK77zVXCEPm~gBe(Fu3K8M+hJQFBHOXMb!%)0sg6di|r0%1H$e&bkzIoo}TEm6wOt z$bOuM#8?jWntKnJPAv4fnX|AOgXPU}W9ZRjQ!)(YVST@cA82OQ^EmswYkV`p6!?|cJU94%34 zw$$g1B+84U@PFYw_wKJ$@DmHLV*BjU(xS3XE{b|$PhWJCq47Srk%Gxf$lTo*xl2Xl%8A-1JeW$oSg#*a`>MRNT~q?IoziNLiQkk zon+b#shA&6e%})V$;}U^oLvB4{cBKcK@Ezz)@};;DzXkK!ILd@r$)_iF=t3|{G>87 zGpi4jI;ZvY5f$BY^v?KXLR#ViSOEu)bgQCuy=!azr&76dW)7&~Wusa*7~J_s0lgx$YzUCY(#vM~4ga1VnJ;z7#*UYD&00ah zOvA(@IRs*iBq3)-MYp`XzB%a~#^dWHoR$_tP^+~=&XX-swe_j+8_gpv$ws`q`kB>X z;b{6bEDQPpSzW7TeJD*$_+E}MRDWtA^x3rji6p`^;Gq7$b&<@8fMN$td4$GBWO zI;rkuRkIV~H32@ToJsOw^dR;j(YK)X#3qWqN-142*5*375vzHwf zXAbW5ZD01nQK;_;;@E-vabOS+=OykMTMcU2Yt3-t+M1SCVnANSk;jL69@ch~oBy<* zKE20M!CxDiS&9gGIGZ_o+e{Z)J4AKy^;p*3aq?t18TZk{;o&W0R$5pn;bfzd^{vDuck6gdUDRLEt&G z9%(@o3wEYwUqaV`^c7Z%W71k&-dQ7>bb4fBW38+(A5bbqEOYeZ3_TmM-{{ff=?o_e ztX0d440C+n!_BXS0%~ zhKZ_!v!nqQmW+`jO3KjL+u(8p6ERV)wh_S6OBHZoKgB#Cko_Ge4h6I;)VC9OdqIqh zS;#25TuxjH#Y#h$%80fzNT*khT!vteL;^W>E>i^tC44bFsgl8rscLblqPWL8YMpeI zmPnw>PIpV190qg2_SRw?ng^U%5>cNHvo=q}AJOXXdF zO&TcWkRHQM_!yeC9;5DsrqPPstRP3|&I*r1EC3{&c6|Kx5+mCms z)KQpJhQ4=gq*NRrk%}>7ozNjQ2Tz0?f~Ke7rqV}IG^>g80SM_B=;BUb9WH~uXwkVK z}`wFP4VG*zOr|@RJ+Prb}jaDRk%Zd40U%2Cv$!XxVE>Cw2k! zq_k1@C33;vsXza#Ki~hsFARQY>pyM!;qy=7#pfOsY3zwaVokVpZf3M2wmH5%+J&!0 zA##&MS~ka5s*x`Iq)2?_eI~rkgr^WTZ;oGUz>k{nA%v}9|FmSl*yr5Xqi*a;i6MCm zA24F>&me4ORaRaESly^|i$yxCO@v>i;p*#5_2B=7xAg#a1H3lU9qUmtcHpn$cN(v_(bZhvG*%(2jUM3Nr93 zKkaS>y837Fd_3Q=DS~<>QIB|jYy41an^TEbg0Ky(T{#7sS5&mI4KSphK(L_)+|}n% zo=9YC+(K7ZPfA5%;7LW}Rf=AvE=p^?O_6`KFd=N8Ey7;#LRxF23@z^wp7=#J9$eH1|ZiySH{j zXe-a7-LGhA>5gsgT={ymBZ}Z#2#~&myoQY)=ceMH*Y6v(T<+{0Qm@t%84@I^cK##dG;-ad8_c{$p3npd@;5MQpSEb6)P z)6U&eG4yW-su_V2Gyp6ASJB;+zJm1QM_N<^?j2F+859l8g+=P%7^}V<&r=jfTF_rd zkf0Tu9gs=&d@D2xLg|hlinWMbR$ktykpJI7DOO%a*Gp-r#>*(MwFfLOcOZi%r09MT&x>N`sl#jvhpS)?vFAU9wnm$yj6NaFj;}l?s90ljXEoB$+*!ai&mjp> zSNq8LT`)8>Ypee6O`;!|@P{V+u?f$b@b69dj|h=rE)JX4S-lq0IO2pdN`3(i)o20# znfIG%n!rfubs%iQ#Hr1C8o9A*RSS{UmI%_aa?J>Dige(Yv?U_FDFk$;P$Uf#w=?kq z)CnKLQ!P92<-JWX5YR83kr-`~bl$qLomGa-NO^4phND5V6UW}F-qu+?B{e)HwLZ1c zY0)XzJZ8*BpVAqgMQ=dUP+1)kM%{=&nNkg+H1m%U+aNS;5SWlSw1EkTbP^G*6TO6( z)aIjPC&YgJsLor6oR03&%zq0q*%;z0UC0ol0At?CmUzwiL&M2X=fzmFYJe^6pb6Dh zI|c&=eS-zW=(@RyV{8X|bme6Xc&aV_xAb6Obl$v?scsZY!`OkEjl@=Xs02yd8Zb+cV2NKF?K-jh;8l~QE+7`K} zjl&W+++`%uDOp+VZfT1_3*yzPP`hByry?CNR^1?O@Rf&tl96QCM3-6OCX+8x>fs|! zQ3vkG2VE`GfrSZPHBy6QKC4zSpG7(v*gZ5aq689gv~o*JGlj?k5a2tDoy(oodr>7S zF)a~C2G9`L&A)?EI=Xrqbp^ZhK#U?qplVFCsR#4N zLrh{8DL3gPlMlV?%{|Q`Y%14nnvOnk)00J8B-E^@39PPFq7*~Z(20*d@#dNLbbi0> zs@S8?Ebo2&j~=@&_MIELe)ZyIKf1P&>zPJ=p{X&-8$a9CNMs}IB&;KEExg5e!yJMp z@wS1tcHZy}L8vKj7xA`(_!qo= zo442U*2CLdc*8&ZM-}kh?*~z_#_yuCjX!3>)1;r|t&g`~;g7fXL@(vcx*ONtXmdB` zr%a@q?h7XFbR)#Po438t+tikDBIZ_jMDVNQhq`*iQc*TA3$a)SO@}t0 z8i&u~b}nz|fycBIY3qu(RK!J~eVxm%?tx`m5|BQ#Mk6mIyhtb1S$S}qlXQ!}_>hDs zmKEzK<)JLMf+o0vX;if*Z60|!?CU3E@<+zR68 z%5yaoMQa_W7%Nb#wWkr&LFewyy-?xKy>!TRbhkuz>(!W(BHFPDeu0-mG~Rb{5TQk) zU4J;wj_YdHULElK;ar2Do9E>V@42sCHNjKH+|&X8xlJ_^z*Kbz%T=EeMPF;&VUwq? zHohp8u)BrpHVh@KtE7{=TTLXM7XOgL3$7mg1hf_=X}1O-1ps>qV88*uU4SYUv#_QS ztUj@OLRVI!o7yDbDo121%aoYTY>Q;Jh0-mENDGY4OLShCQHyGy&OxG1)v%_~)sACG zsm`1v$;GgMj#uBrc|jt28Urng-5WS$LPOEA7-U_rgTdq#NnVNf$le92&dC}LBLS`L z(Y5VqLlW)iHu;?1rdRZ|$nwV|aafwgOYGKZ55XR9Y*hG#W!_?dB3c-9@r{HS?b1Wc z@9cE6AR|l(v8|gTGS73UU}>-oo|5Ad!3MladY%JUFS&(-0QHPhzmo{Oug3WCFl5p* zB}m-<@JLvjU^RUNP8RYNlW~!bA+v`>j2ksG@0hvEIgyV)SR=t`ox~z9mt^LV)s=BzF30qFY+u#j467+(SfOPA3Lo58O#&!U^+NN&2eW=n6`Vtwp~=|-d~$Wq`Yph-wQ_jUD-=HC zudZ4@sr#xyXnK5ull{JT{q*L+PiSgZd?2E(zCdce+HOunhGv0Jq~X^H)RpUJVV*37 zrpAY;e@$Zjrq_Cjha)O+fs$)J9u%4jzORNKLs0u_vXRpmT7&uGs5v7=#C1C*ALk*J zobpNV938)jy6699W~f;*qTX`Bn&GsTcYa1H=6wT<72@|$@lz1$&A(+XIN)bK=88;q zF_X7M)F1vfnczvZD;9o9^|!7CG6>XyUtSHfHo>l{5r{t3>Q;nbYE>KXLn7xMz3uFo z592G?5!HJ3%cmTWq}5M-R!9~qh#Ntm;TA;aqJ z?_0g|3w{P42Bv(4t2z8u3GacwEiwyqG}36duigLn>Ybliz2ot7_dE<pFP%%6bUAyP;RPOgQvOQ_rCEL6oebEg&Zem_vdEe?oUpW8JGl4?RJ@BEmkALOd zbAPmY$CmZyA*;WfUZE;{?d$5zkWvwH9QK|A+gH7wDS&#r#rLwZKjRgSOS z^YlxnKYRAsyI0TLt8RTIvhITOeVm0mmb z*xH{}*Pb|C+a^szXQ6rliJtr5(`zf$K#f;F{QlKDp3*7Ke&wOH>f?cyo_q9T=T~l9 z`}jk6IvvPr^_kPFXFd}^q2lN7I~_osyY1Gs2ObIJxcb;9*KYk%m;i*ZdgrNgpM4^j z$zxBV0|F>K`CfbEp@5jy5yhFiS0BA!w>wykNAF*~`C+vC?DMBW2y6E~;XGPT^xXBd zij0iYF?kAC-}Z>=gU{gnF@~RKQ~Z&DpMmx>AB{ZRhw%SROb$){>7~0q@_XON9k}<& z8%DdIeNj>jU3K{UyEqF9@g*Y9}e2P!+726ugB6W=I>XpLpHS{bcp|tg!pYH)MSfNE5QnJ6f2wzsK=9UKd!gE1-})gJzk;^ z=TAr+RFn8cg@btBKY>^ZzlAUgIEDK#;{1EQ@xT2q?m>CKqoFf-vrw`7DUmLUP(G zJUh^C{cksZ5dtz${ql=w#Z^@zwL!<+B4z5&n9fmcT(dZQ+~&VL`i4_73+_;Oqi_?Ku>$<`*ij7j-Y- zAOEmQLp}#k-W=M6cl;oUMaY0Hm_u7D;OW6ND&_H{4e^vRxt;nF(h~bk%hht%XG?N8 z6~nVZUhRLq+;`yl5q~j|r%;^qwNmqBhTkL=`6keZWwdnxyF{dkZ(0DPqM0N{$63cyUM0PqjYPz`@?#ezCUO@>bx z$5GG>htF(42f#4EDhR#>tR8{<0MeXBqeju_R4m9;ko!TN2HA#Aqx9%>DiCBC$U=~t zLDqwO3(`b^Mp-G)DIUlqkUK#h0oe$Wu1Kc_DbgqhkaIyU0a*vK9;AU1jq0mJr-DK9 zK$d~r5Ap{{b!9r`t4yPUK^B2519=DJOOU22G-|jCor(vU4)P?(>maq-&?sgbIyDJo zG{`j|%R$zId<(LZDvj!`N~gwwK^k|aQRbcL)N+tpLB0a{8|2^qf+z+zh-%LZqAUQ9@Rs|}f8!|{ ze>~M4U;=Oe<%yi3;+xPj089WJOKWHaexp&B!CBq1Iz-X0Wtx(fSurb4`4ZbE(VkWwgD;u`vEn8 z(||g_jaW=$Kk9yLKk5nKHQ*!Qd#oAd6lX?x#-Sen22cTU1E}$UPyh$Om+1z=cLU+O zfmA#o2{0Fs1;_)e0IUIQ1Z)RX0S*9;0nPv}0d4~70Z##M0G|Lq01EK~DK&r=pkur^ zB@{J?GK?QY^#t^bA54V-rUGIB34l3(d4Pq0e85UT31Bl|hscKpwL4yedJmva*Pv7Z zPH`HLS4~QDx+Y}`um(5)?#F6ExoCoKP4KNnxlh-kCIapVwV+NrP@L%820W<;nfG2?0fRBLh0D594N;R=Fr3vT`Farz%i~!gJ+yK6SF@VW{a6mLb2$+$` zpi%&N0KWtVq?Z9@%z!dxQ0w5kEs4@P{J+TV)Xv22)E>ZLzzM*4z*U(~BWlnLBWeV| z9^eKzpJ+trjVa$5#?%;eDI-mof6JVjNo%V#VJt>EoJt=p9A7CsX7!U#A;*d@B*Ncjs z*^8P9NChkaECv(+Rs%Kw$^g4$;d?_p_og1r><#JZ4RQ3QUc%=OGQA1)b*2eL%`%}> z0PO)g6HTDpOrT6mC|%&uAccSwfB|qLKp%iPzzQ%5upV^u=_XKjCX^F!Pe1@*JRmgA z1nzf`@R>UcGtq}Cn$?F|57-K*5PgT=_oepE>PsB~oCI8ueQ!!#n`KJf1v~=01bhH| z1yD(*lnRVm#eZ!ni==kcP(T7;f#`cRYIBkrwF9sla0pPFq(Z$1d;x5kEwxpp_RBs? zzeA}?y_fqv8Rq}sLq%Qwe-;4VBSAB1)e=_x#KNHILulhbz-e2{7sj|Q7O{o)d_0Wz)->XoJ z6f$|LRDOyowNmt*DpfC$8Zb-3_B2N#w~J&On2$;4YTZCD<;w6`QxskqW+pWFgwI~I z7jsqktN~C1t{~C7(#2c_IL@&SgBj{ofnNYVN)lcTxEts=60Qz>GVlNiZwve@aGZak zeLLVV&7t}OR|no6IR51U^x+!~3CA>bY{5Gbd=BV41J{y-eL~Ho9(Z?x8v{22NcA|c#P6iM4SeoFaMbrC zIO=;59QC~kj(QV_Xp0D=u6-`RU^w>Vkfg4G;HY;dIO<&pj(S&u zqu!0+sCOqg>aotH@uA+6;HdW^IO?%XrQuQULvYml5*+o|uB72n?@w^lW1m6l0|}1$ zpcZ^I!O`Csf@Aox1V{Zif}GIEGJX!Eu02hR4CPlw)`txJo(t$3dc$ zqaFu+QjU5Yyh%Cg=MWtA$pl9|KCGqTQJ>m^rx6^(&m}m9PbWC)=MfzB83afDe1fAM z`&nuHsLv!g>az%r`fP%uej&k8zlh+dUrcb+=Mo(C_)I6`Ujk2TDaYq!KB33(O9_tt zu#cC9NBs(dqrQ;fs9#BN)URq0UooM_@M{Q;;n%j{B?QOt>ss*j1V{S~1jq2D1V{bG z7JL)IG5ltNWB4ruNBvfUqrQybsNY6#)Ndy^>dOg^dK?px<-4;5uOK*v-$iirS4nWx zR}mcb)dWZVZi1tJ55ZBtpWvuJKycI_qzq;0?Ew5x3;kh&qx}(rqy15WqrQgVs6R$< z)E{rbYYC3wPY@i#pCmZyPZ1pTrwNYwvoN}mmOtJP=LoI={5%mJ?Jp1^>qYC z{UsP7lKw9f9Q|J*!lV6Ff}{O4f}{RA!BKyM;HbYzaMa&|5ur4G)ZZpJ>hBQYQGb`< zsJ};qNBw<*qrM(M`fngO>K_ms?H>{x^^XXS`o{!E{S%@-uzsGx2$YQP8No69bHX0| zy&yR1UlJVkuLzF%*91rX8-k<$EzB>-_}>v6_3w%BX#auWsBa`V>OT@3^`8ii`hN(H z`p-oBLH!qkqy8%q9`)Y{j{5HeNBs|iqyA@$^8Q6|Y_GqG@Mw=iacOy=J#4YbIO<_b zO~z5LKx=+KC=wj~!&aFrJlew+nT(@7Y>mk{>R~HP#!(MjUowt**y@sT)T`5)x1Y8I zM?Gv|$-<*OY+1=T>S3!&#!(MjQ!CIm-)AA+NPSPMR!;23@c!7;ow!BIbw z;HV!(aMat-tYzhm`LQGP7~Y=X7~X;4sCOhd>YWIVdS`;8-lau+xDF(}A5rg4aJ2Uz zIO;tKj(RVGqu!g~sP`c_>U{~0dOw1r-k;#84uA#QMEhWZqdtV-s1GGL>RALweHhJI<`3fw zZ=sJMINC=N9PK#-NBtCnqkbyEQ6EKc)JGE>_1qTihu=a!jo@e>LvXYg5FGVFf}=i` z;HZxyIO^jGj{4~YM|}dpQJ+ZjXjXnR2|b3NMQ{wCL~zv4COGQn5FGW%1V?>Ji~33< z^ca3F!7+R~!BIbt;Hb|aIO^vU9Q6wbj`~c3qdtq^sLv)i>K76m^*IDb{UU;+elfvO zpG$Dm=MfzBO9+noe1fBXDZx>{jNqs*AUNum6CCv`2#)$ff}?&V!BM}8;HWPm?q}4m zCin>8#RSLuZw+CO;nxxz{gn_L_3H?Z`t>c^M`;WFMuMaLCW52=W`d)BON;xltc89X z!O?y@!O^~);Hck0aMbT4IO;11j{02$M|~yDx7qzxO>3G@=z)GW4NjI&U<7|?zlY%X zeBVoOT>IG%K?h30D+513aI`;2aMT|nIO-46#>?z`13%J2f0Pz1(_{D=f@6A)5!@O0 z@fN(6#+KRl1pNu%mXh>(13yXdQNT|T9QCIOj{eUO9K)X_IL@CR(UfKWb$~x6co*PL zTJUEC$Naw_xIXY#1aAlYC$uMN`f+VZiQdFe78T@>88!_T4#7+jr1pHwiYXiPy9&7>4yyp3l)ec@Xr(cDQ{6cYMD3<$G5 z)V_wR63px|796jLS0&(lA$(R4&0rKo<1+E+j4la-twFs0MNtv5&ot3zx@a9ztZn|y z5eNyV?L^_5KGP{&Cl-&kq}RTpZ*crAE-?ks-kY*0FDjyS@HV1Y=%O(yO*B#$UonQq zTsqh*02BdA05~Ja#~uM&fhquN1e}Xb)M9JG-T|KoG-|>$ENi?wwE=in(x}04*xTV9 z))9cM0rp(u86XV+c&Bz1efKh+39=iYJHQA)qqL z?)dcnAO`@<0T!a~3=%Ct4gw4YV7)+YcL0rQpX3SB3xGYCkLWv2k{?KaKmZ_6^xgHO(ICeF#sbEP zzMD0B0?3H~+?kmy`tH)~5Rjn&79b4plV(FxqPx)A(I?V$>0z`kbS|w2J(1Rro3F*uyoE!Gh~_ zMk-w67$tBOGJ@TdskSM_a7|CKaaX2Jq|AXUm3kPi9&m+wD3$V1rixQ-;Cdkys>$Bp zc*IDn$&;gatdJQxV#x5p=%ZhXjqc~ws9ClO~70nh#@}$Bm zB$`d}V|aXaj4(k&!a{^00SSCI6(tagB%3Sb2oppf1-xi>P)JlPn_^Gr2!wD@UCg8o z#7r2;5!l8=P#hsUn&OAVKomlDjN^2E3|k=J@VK)0h_Bd9TCn2V^SEIgA%+d-M1gS= zXUR0t?C4N-j1Qz8vV-67ja!=iL=#bu>ezbY?grMfM>&;3RlXU`I9E% zx6Wwpog!>^ywA^o9?v`5tnBmETVFHgOV9%EJMF%f-yq%jrTPTcT+p<`^Sgugpj?Ho7 zaGQOn$l`^u6$CLXW&g;K7;NqT z)c)+4I1Y<##uBufKvUG}W9=I>E`&d44%1}Wh$WLlI~>XOesagcSlQubd%w8)ohjw_ zYCk{U(eZh?zN<@!z=16c;Y79W<}7nn!^#EQw$v?jQ!)7wY}NNk*MU8C>2TzY@OIgmpa&XjeHIO?O`5HxVwPmw!}6pct)xr)#CRQ7 z*JwU3M%cQKU?%-GmG2++XqxGU)x%tP+rrxHPRv~zKkWAXPgYZ3KkW2I-_?~H2aSXm zlhC@GbxbFR(0$i}H*8kyvUAB&Ih$#ZN($b(=dul?oy3|zf_Zq6B4kG- zz`ZCC{^4aVbI`Z|ofp0D=iQt!d2jlUgqOja7Ba^_PqpZZf=(RYs_O|iJtu(8 zh2Bw|r9ZulWzHUC@VmkK;LGlpF2A_+`FwE~{q8^W$3DA1^W@aWyBC$~x3iCpiGivY z-z18*&2yBxI<<@$H(>FLHl~65f3|xQK4HS#pe1dcuJA`B9T+rg^POk@7i%=dww@u} zkO+3n9}XTcKaHAaR+TgIYj;)K#eVgjo*sNR$h7hHwTap(>56e{`tH(_+@h^`NHb#A zSfo;%+quUUUdYbieD^MnuH0BcP)F zcs${s?In$!#%JDL(qL+-WcIt!_G0%w#r^6U`j1JIAI`yTl)S$EpdHn@CZVJ5%dCIkBzwy1Ob_XI6su2HykaN|WQyIgrr(@mK%ce@R)KX)dgeYEGn3CDxCuD|o>rRT1D zbzG0J7B3=mCN^bQoW|BmFFl#Lcud#b9o|GOT%k1c`-q$Q8^w>UNa?A{<$_6uMZ+r{i=hwRcO)FPUTE{aFkQmCXV|SS2~VND+09w`%e*Esf48FQ-EWg} zlWKWIH9p{V~YCo=3Px1JHwV4bHeKV=ae=VUZ-@TU+w($q~Z2w zyH4E>j@8?7>)xB1Rs0UF(sJ^O#SzyZE*3IXw5>T6psPu~n zZ{z9;1GAR#&evpWHwbr(4XP_+Pgb=w3r+o~^X0YP?kC^YFmG#_9`2xPtLX~QKu$=M z{DjYUW%fAw%fFr(WVgn_c;SMd*H;zQto`R;TJQP}jmAJ2VZ#^+X)lQE?X=%R;XV8d7|3aDy_!@+kW!8&i$~b?{rPs(8ZM- z&XeOJnAxGtE47F5LyD&b8z`Ez?P%Kbtn-@Qqh>heakFmO8aYf<_kd{#ju+)vmoSG0 zjZHIpdBx!4xUE_9KD=yHpY7%R;AljJiAuNE8LJmOR`K8ou_3ffdIK}wBY4aOrF=r^oDeSJrb0GL$?!r3wMOD%I5GkxNT>9#XQxQAJs3&_5~xo}PI_3Dzl zWl_b+TUDNZUi4lqkjoLukNzf8$8Gr2d0*#qJM`*V(4pg_F>e#~^>XxX2xrEoA5^lv zF;p#(7cJ?}Ta;Ut9@8hH>&!!Qf7iUc^p$o{=fIMJV}^+x+tyViuROJN?1m*S+H%@) zOE3P+Tazw?>F3_izIy4iYJum`=#9gErfgDrbVksQ8P?WuN~Vf~kcUaomvqSDPD=76 zlqoUB%vzqchWQ|A!P>Rcm-km0VtvJDM%{*Ub1qyNn{(;wp$qJoGlgA>^~DcoKlZd( zwm{gLpXbbqLJRKR@JsXacHT1?WVmrqr}aH4Yl{(<{aG{h5{LFXFMg)7y<-CTFq38f zHCfr_%$YsQvR9dwaFc=+I|js$S*94-Nx$c)eD$X`Hm|>KpLAFA?+)fL7qq39-QG3v z!~>TDjY@foY{wl~b967~z<-QxeHsutQa_c4AQ%eWih6mqV6I?ppLD(7hTgTXcp{dLM~x9>ku z_M*K9JV{zh&l2XxBYK%b`d_@CdPF^EMCW~$efk^;(^q_BvToIHgOJp~S6Y9sfCTUm6f|JZ?UxP|1-S8!gblt1a~P zxa!foG3W4e;+R`mr6JDU(@F{xE!P!yt~k7F#@toO%Oa|47r64wpH{5tDz=Z|#K8lH z2PtEVhGuNJ?y8vOb8eUtznR|nm}Oh>#V zBG1VpCFaXZmuNA23z@wh(Oy)&*XzG`-lY>i&Sf?7-|q6g+HLSYeRLuolVE|x3gr56 zWA-1k^!7^@>&gjTt93=yT2F-ccI#d7)vD|A{)30o&&q+iB0rLms@PM@5?YkY?4ayz zKJoFqYQ3v-Y7DKDZk=*1+QzFXA3nYF3u>Rb{dH~9i`gi!yY!2I|uFF|a zP!td($_kE3>~VSwivTT)V{r+yk#C%}KkxkL)4xs&k2`nhU0^rP^XA!ytl2j9RkkZ4 z`f7=i0zO(v#ZzYDhLJB#%Y5s(wa0gC%sV)dUN|;=4X5#2#PXuNUy}=GiZbKI3-uPQ zZ`raW4`iYn&f({pFqdbH%E%7uRq*h1`^8=E|LnI%^@Bs#o3r;>`LBQQE8IQb5ECME z1NT_~&w(8t0&`_}v3&kTyA!{!)aJm%Dr>qW~1`@(MiFXA|HW*kkBZ${A}c3wAl1G8ZtD-gm8YK(NiBuNj^OF{3Vn|G3VT~}B2 zyWNv0?MM0j^Gmu;3%p80NC zN$>eL2VBd(pho!*^<`~MFU(h9cd&lfN3meqg!i)W$3s(M=23N5S_tGW8IqeEh*wlKWF z>}9^~oBh<{G4nsD!P2C8w$qPUoA3RcNLw`_$zsZg2RZHi*nFOVgKNw<>h9nW3Vm~H zxi4r_pwFzfWaZf$8EC(;pkd1$uWAFW@@G^`=t|wvi_z7qH(u@3v@jrYBW#MGd3AuZ zam=xYLMLDFu+>Z7f2fb$TL;IhgU>|2GwGEdcYvw!?r^MjXGu{yhTFqd%U@iTGL<#+ z<`)doIIuW;cW0mL$zj5Q3(o}Fsuq3ww!!u6tBVIZOP0a^)zt^)w3&OZ<~yIUExVqY zH#>E<-$lp85ut(ov(_wfjdy>3qDbErHaGsw&vI+#h;_OChh`gi<=mj&KLgAI>&UrBlPkHXzeTx+`+ zry?a`qPwYvc&o;f7Zw|Zqf?^suFzq=ylQr^?t`Ya^Yfv-j>O(F3EXk&fP!=B$|K$j zh6##>swwb7r>OWrp9jrIoy!)opu$4<{6S`BUXB4+d$5OL8pMvl6?*HqL1qKYYy|?? zUyDkRr5Wez9h&Z#6@Dv%R!mwkg;`xVjXN-VUcqYTacQrTdg^Q`@APQ9(^8u9u)dXb z3NLKBHs5QKIhIVK|8#kdX>s87jvBj4t@TICi%+O6?ENnOdf)gTzFXG@4!?fBFvFHM zkv4%gjy9GyhBlfONDH9((|l;&G*_An&6(yzbEG-Y>}hs1TiDnhMH@-8rj4KtrwyYG zrCHI2&@5>dG;>;iS~nV#W=QKw>q2W!Q>V3|Dbti_iZlfpokmN(6DKYT*ym^QqWLh| zjOi!+%F+yqr{7>Ri-G1AR%YgweFqOR4;yF^W;MWk2rHb$8ayDJ6&f~p$Uv)sg9n(0 zhYSrF7{(4Yw;TjJwA_eTSnsFojVJ*R9((M5;o!QTXxok&ItYF_M#zs9_M6J#hEWa) z+>mJ4lZ%Q<@ZfN#vco($p)nz_F^PMb(VRrl;tOnJimH_2M}-K(VIzsMFqf~eXwAZ6a;p{=@?8yV&DFqWuBgM5&mKG2 zDTN)N5CQC)n%T!B@L}u{78L~tE);hJt)Q5u)b^WM^ZnZ|cPZ+}u=@}^=dr6j-hi-2 z9mW>zn)1hS_)sMhs|2r~yQyFWDx`d)ZsRPj{T#-ogLZSb_j6<8E)fTIy==K$9!^RBI;;1SnbeV#wMsd?9Hp>CSa-88Euo*Y&TPrwTo!mYyhVhi#11alz=Di}74 z5+vpdJM_*`^>B#QC#RcZ?J)P{tgh{;7m5euo5u4G#hqb=({ zL(x$CEELC%8-2}ni=q|(UAr{r|KiS`$D7JwOFfNv_4_V*D!w-?uIlqyjmCe9oSf819Z zE_$qgws^>Y@!)L>B_>J9+uXL>F(t!~$3038G;+$z`sAJYPHS8n&9$5C&$XVACI>z|*qE1AdEB_G#pow0ez4Bw5^v|djvGRztgDNa zn-JJ4<@2~u>CpBdFHJ7Rg|li~*E*^g&OpA+IGnLq*QRo7P@v=aptyhYCAOZXG-m;} z-Adz6`co1u9k*7G`p~xVd(gjGJ3${MZ6~AD!qYG}rM!f+kJgp;89%RWT_vn;)LAl*Xs%vy@oeKDE`&lMdw~q zUi0gBNNPAxiCZEhD1qih+b0VyxNRGw;jI+;d%0Y1c+do9wL)?6n#n2MCB18(qq`Gb z+)}B%18nAQ4ftNZbmGAO;!d2P#ywYx@hy=@abaINs$Fr;;g`fssq66Ozj%<10;Pps zI58;&laqL+*4XEwuif0`6C8a032>0_j1vL}l5o8eZpS}+-+q_3l%ubeHI8QnU66edM@LUld7UVwN%&qF3VY8`SsKZ@!H9TW64`}xbQRR?G)rx@EEtk{G1LC-wb zgA;W-+3hUz+Tf(8c;T;p#Chm$!mr0}K&|4W_QQ5<3g^ zbj;D4UR@uJFNpU_(VTSXpD%|O$#*A=j*^$1?|teE&`F}&^<@DgmN_k|-+8s};GHY2 zI1%#YIr-J;{Wp9Q@bdj&XJ+(muT4H3w>d?1zSg=En4-%%Iq`uTNi~hR-RU8w=fxV$ z*xE-kZPPEZ9kxvDR`=griOX5=C2j*YRi8D1Tdwn#+h^~daH{jhGf}Pk5ZiGMw%>=@ zxHQA}eEiW^?$0a`z!D2JloN_3nw`C z5er8JCHXhMP;(P|$8C2S_PoCG!T#WaBEJ&LH>+B8;0+I|7*3eX!R0sO-(U&`XQ)Kw z7;bSr@aA2bcH)%7tvV1idpukU*8c~~e}hf7La)0wT$jvP6E(Sb^h3Gku3znD(lCLn!X#I95&Lr#s9pus8p`4n}Eml2@$fSBcP2vU2kLIpK*#RQ5~UU zn|^Y@#^K@X&&V~#h0dtv1E3G}`!g}$^NM5oPkuDkbKk7$;yR@qeY-ZM@I@KJ)nGsdD{z!l6Sv*D5K1ou$w2q3!EVODE8>rgX&@2P|V8!@gos zeCwJ~JOBG9_p|{k&7$?J+qddMH2fFW;fvCS0z5Cj_O<$e%JXGT+d6u6J9%sT-M`sN z+ivhC?jFqk-Q1Lpqpy_P?|U=(r=e*>Mys}>gP(s)S}uJ!P>acrnN<2}e3iP#rm&9( zo;uYnY}Ji8<@fU2)MM;pgViF|HZFG0nd!^BN~Kq}YK8;F5Fw0B1ZLP6C3QF@FzgAs zVes1YcIaBW_ z)1uuHzMeuK*V`I>kFH$gR2cTb(0HRit5qLF9N+YGF1gsN zuHx*u;?#Bm~Af&A#b4%zg^kA&p z^-x}>rtP6a!$yy9`%mvyJp_bAxUi#O>p|*aMUHAQ=4IQ)@hdjgbn#ez%hr6w!zDjk z^$^5i$G7NLvmHl1fR}Zs19P4F&iHlHYk%jIuP*(R<+n|;Ah+K1KaaKWi+!6ZzbJHycEfUo!7Zy5@?_ZG`RlfGrYVpYdU{R<$3;E^3_DeqOha z7JB!x<(o>ncsZjell`MaixNq7ADv&uUvWquT5VItZ#V9*e#C`9-xa=+s;5yS@-80f zbs*B=;Nf1$hO~hkxu%kFoQqJ%_fL?v?C!}W1?XY+!LNg>T(rC@d*46SVb49P_H|8rm713IFV;98gQ=NlBUhXe+MV!9tcIP|0WUXd zPPEJKZB%wIKwbV#F3E^HoTh=LK{MjnF>2fKaw=Gnnm*!p+K8yBj>-N-yKToOH~uX> zQa9p+*l$U^jx96kTu|D#@(|}m)sqBHSBu{M7Z0M7Q+OoC%pZ<#v0+U@?9=qXGIWEu^@h!$A;G>ZqI$);^muiB4Cp1 z2L*!X$0d;uUO#vldU)KKa5ky5*-#;2lC}H3 zb0*FyDf8qHsr)4=5a&DL%>5!P%Y!oqFE{lcfJZkD|3#*?Jg6065V05Iq-zAx@+bm zS-O|g{Y5>k6VJC?mZhaFyJ(kVy1wj-!+}jrKEwyrobYX{cwWp@@lx@h%L~d?HQTV3 z`{<7x{OT9ot}@Z7^zMW?`G0pLF0zy%KDqcJWz`y|4O3U-JFV`UcQNz*jn99#g}o+G zCnj52O0G3IN(F0EAFmy!JstJGPizA9~w z^Db9bhUTa|V(df=lcat;;dp{<;XLAdw^vv*!5b91QnWbd)Yv=QIi5R-(FW;(#|`I1 z#7cT(Id#OUI&cTQRjCOWGdDf-+&J%c3dep3v2M_+H#^wpkj)A_`KR%FFgUU^)ix`Tw}WIhXOw^*~3x=-(B>-~Yj% zE0-hbN8T(7zKTv(H_X%!EY)$``mOJS;jc?x{s$+-%*6iY)i3C!nts7Ct2D@Q-pyRM zl!PM&|G^8aocge1FoTj5tv&v#5}UZott9R5U)^ldb_eAOUb|@i2Va2#c8oup71Q*D z{cP%Z3KO66*{zuLeoV)WY~txl zBut)9aT}=WcD5Lk_VvlxefyFZ*lZI%YuIKO_4Qwp2K(qRJ`%gAA35s*PGKtj)_-oZ zrk~x0!4uA{uFF)D?}Au-ZMJ$UCyQ$DFP2~yr+3vJC-C3szPF>f((dm5BmQ@e#fjY3 z@$^UR!udlYpQW8PabI3`f*uy#I9{$VY)mj(h=Zjkn5fA~nTp=S{O7h_xM}9-Al35nd+= z3xg9i;w-MVobnorEAy$_ypXHf9tYVaFHYtyKlUFI>Z|Qo%Nz0 z`rnP+Q)i@2s?dx(*QzHN^}{(#XZW{Tp-rnzo>P^MVtUNab*)l5mh3%m)_@%j@A%*4 zdckGwR#v6Q)F{nGKVEv)K7o#-TvE7OOTM2xviq-o#6`lswe=8YBxG>op0jI>9XDOG z)o#y?eJ0-&rZ18L=*E1t3ZvZIH@Ref#4CsN*LNLm2HyQ7*G{%lNK6+vce<6~O4qA} zo2u+MKb;Q7@&^sFS$X~M4&ddCrq$93Uk=X4vHh6cp;g>nJ}wmxz07}`7!!+SM8jyd z#3HA`7Cq(^V}{=Bzc#Kdwclyo>vkWEw_nkgo1SLQ#09DCkk^Q}Ps!!&tnz#%+v<-) z=JpF)MeH3lOH4#WD|J~PG<6fE<5qd_*?$gKy6>9!`-f8O!e6bVL+qz{w<=E1&-Pl$ zShEbH#ikxJ+PI}2Q{ULDagF@O1!wL=2?9p~p6of%a~@yR%D+{OnL4Z1$9ct^`_V_2 zKi~YJyA}fh?8%n-Ea;~Gk=UN zul2m*u;SwN*LQ=zZu@K8j`+efzB52-H2c2^5OBMJx>19=x^9A7G;0!`+BIlW7=o!;q#vj>M!3~{Br~_8zmmM zL{W>2_;{D9&zPVA?cVqfbe(9Ev-E?8+xU25X^Jorp8yw_$zQb{xKfJ@F)KnBQMhCr-r>D~BDJvB1hVk(nJ1I_5GmZ(KeU%8+XcFSJF&{4P#5;ybZ+ z(jm0g>#Q|kCac(M@qvSbmCT*0tM|1xZeU_{7OWih99NG|m zeC)C&b2op{4mMBP@s)ht`V2dr6z>BYqpv@4P0jTQQdSBwYO=sN7cTUe!PA?F%4EIa z3p5OQZduJedfTqzePFd^`6OZ;&l`p{wtVTZQQK;AD*RJI%A(LJ)g#`|W|3dg^S3km zUuuddh$DyUHm+)J6dua`~b{P%YG4`OD#U3oQCzM;4hJhES}z^3rl z^zn1QSCKY*^?G%6uxnImvVlW(11-${DE|QCw!6_VVWDaKIpYU*`<(Zbu`<56wlwr( zN8pR1(#@i-xz3`E#}CEYm0_3Kx)ncocC&lQqBqe37B41BcIwIBsKai|ik^~Eh{g~f z@5*J*ipDx!UJeHg1@NmHVIeWnM|=L(w3GNRQf?2~6xEQF;JN#7)z(g%qmtq0D}>mm z!C@!SVA`%}t^fQ6*Xw96g8niwr)ixH!-hTbhVV$h*d^ma12yTzmygBVB#h z_0PUC)Qy%XdBN#fI7gMhWjRjA`%TE6E|l~eJxhM9#m4n+)o0zIhCQ73s;RXJQVkDi zVFJG@!r_t&at^icF5^PLH?2Xs#@3fyH}tAKe2CHWWHUQ_&rmw;x!w8K9c)@weAOpM zEM_>Y=Xct_Y{c;}k%2ugDoT2y!~x%fllE$zc8J!2(|(=Gex#S`ykx1`@NUm14G|f^ zTfJ~Fn4DVm8@T%|R`kc&Q(y0Xsbs&Xq~?~#&pygtKHjbpkJaNQU7>=R)FhA1d!7`I zwb^y=%E50#4ep78czciW^pFG`ToDOJ;M6JCl(kA3f#yz|9VZRh=y2(pI3U~wFfp*i z+elpWs@G4XQ%v|zm%qx~dn~-?RT^>0dFq+3rDSmNc8;__9%-l^r|ONV4cAWdN{Uaq zRdx9^t-fIAK>zpQ2Pv5&T6$zDEr zWIyNl5!Z!pix(pZ*)Tvn5=Aw zg(dzS2}#DLYxMkt8S_)G$aru^-92A;P+{>f_YHDv#U*iEu&WN+)j#v2V-8=ZJFK5P z#(Irqxv3lj*XZb2A+{GuTn|_ap5T;cv60F@CwF#m-T8zbv+dx919D8gcw8tvINHOK z*w%j?AX;&JS#Fj5DoEF^w9%x!xn+1CIkx_MHVa->;Uvn&_|ZqE-o#8^UVdozn|IGW zmMEI^tDd?_an)V)i4)-G~fGW+{xet=?%d>`VnUOVyGBeZ!+ZQP(3WxI^vRipFanf`VSY>gVaWU-_DCksht7(3|D`kG_1@(#I>X=(f!naPPp& z3fsNz`%>&jjT$dM3HX{3G%+}U0Gp_i1kkR>*NB?_WUG5Q`h||GpPrkxb@}P;G7rRX zr1{`P`ZFWq!Vp@2ABU~ybVWR?FhbcQEq&sWUY2Hwa{Wl!>Xt;&GFi{4yZSldMV=d; ze|A>C#foe)AqKWL+xEGJIi0sMEcwc(C-&tXLp&=^9l0b6EL(#2dt};xAy37rTPCkj zv0dhA&_8`(|Lu~HSpSd_V$DCN@nR)4hYmmWc=+I;fqo?aENLz78y#obrFO6Y690#zf!Gc{%NrP4#p(H|ib0XvF32&27u{G>MWcR+?S_39 zuV5Y3O)5!vtytu_a@4TE0cMj1$*~Q9LBnX=-i#4Bz_-S*N0c}kHEmk~rhdeyf`Y`k zo$U&|e7n92Q9dcp5lk4QX`lYd<0hI}&${&?GVzl4isU^ycb(%i<(d64S@DYBl7)%) zd0q9QR%?K3w%fEKzn&XjwPM_~rm=QUg=ijqP9t;nII9H5Z1(E@w;lNRC5Gbqn6`cL zdmQ0VJr&fqtuyy5KfdRB-tY0Uq{W29qsL}9RwVWbu-~~hc>CSUlX7iy`?l$jqV+`D zCpbuK#1X75(malNPcskba&Y5y$AkAAg9{@*`$&^73H(PFIN9%V7PhqHFJs@CxTm?4 z&~|5pPZ?V*wG+QHVb*+yKB3PT(coF(_0pjmcW$w-Iv=GmEFk`q#7H_cu@!L5B{fj>Ub{|=f$yuoIdPH8ZNQGWum4NPWB;Du-q9U8v^uOtRKdjx3?UQRPE{=P&_4lwiW~n$SujyazR>Ga88=>)jkz5mE(kHfdz1O7*t!Jnm zabB}(zVpVqWj^OSSYMG?yLw|q$@cc`U=uM)I*Hj~bLTpmzTcjeJN)e&$L%K`>sY&Y z?l0d|9NoO+JEAAy_%p2en>Ji?+O{UacV~FpH2F4o!%H+`^EUKzqFJrWnUjf+%TC$N z|EFZY+WZ}}<(tDx7U)4zFCW9Zi28{+jaMHyCQWrLjP_(}cbgvFWGjxt!KE-Av*p0` zVF)^SyCs{{rL7E~S<@8mk7TjFxIe`kYWbHgoHav-*yjgUT~jf=GeNG21Dtba6aCk( zWkdI1e4~>Fyw3VG!DgOi-Fst8YbCkHe>CdN59f&1FRI$uo7o&a<&mywdr^Pb@kes4 zN8_nHS=SR3drUOypBTGm*FT+?J7iBz8E1MSNBT5_s&|FQD!eirhAVS$?nhFP2L|0Z zjJaLo8aw3Tiea9s3lvg%XzTQ9ic-8|<_YhJvEdgao3?Nok6aWjTdA#h*4c4ho%8x& zctx`M!0skX9}b@#1zS6S-5xVHzPW`o^xVt`qDO!J zVpT8iMO9v_R4PZcZ@+SXQ|Lf0Y<59b!o*4R7yUYqBwyPf{LaUU=y=7jA!z+Huj1~{ zzH!y}NuOb`LpDtk^3muXqLV{{3AdkK5&X8#ZT!{%zdcYbiANMt@(LE*KCb!t=1H&J)$qk;P5E)7%)miM zNGl)s$xN6DO4pN)6k4QXPZxdhOS#8Nj@>Sc%7qTY&z6%WvKJI3dAh&kGMr_CAI)u? z()a0>Ue38A)<^I4w~)>Unr(uvy<;hwla4y`Kr_dfZoA^etgZgkJ)XpW)9fz&(>Qq3 z1NJcD!!vuko7z=eF*~29vr{^7ldYzR@4UhHo>t?EK>W+SpP3QQobz8*$3~C({G4zr zT6-aO&W2B3T!<0$Yl{p5HS_0VVe3^>2Jg-MHt?pR%4(bHRdZivF~%cVB+1$U;0 z-o9=?Sb4%vPD)BNIM+}+jT(!HTyB_O=v{%5)190aZdjmYN*krr1$B}Osr>^_SZ03;;?rZz0 zdW0CdF^M>Rnx4zKKWEirDSQk}x#s5qSN_g7{KbFeG~^4kR^3W zD_tf!d*YhJs#66rK4*f{DY>+ zo+a+yUT3^^RSvAHxAmMM-&A}fc~w7thWGM5r4i-X{X#vfX@?Zg`ZgYy+Q3f+!i-#6 zuXZkuqV2pTQU1AMZB{!K{oI~at;Ll-$GxPXgJ7kJCmX3Onp;zdtzlgUyNNo3$~`LR zdrxLG77vxgAztGqH%cAOd9FZ%^#)4ggWhqR7pN9Q4O|!2TVmkH4wo!tnc)HzKB>qO zH2%~m8mHK~r-hH#dSJhiciJa(?0UsNt;Iz!`AGIzEH;jC)Z`C6w!7`UccK1n)yMOH zhIfQTXGz7bK3nt!8(!WrWoEYcy8H>k*kMjZG*gT7kpI|t@m_UReOHk zu^hKO3ubjN9PAt1iU$u)M5HjDjaNw$uDB-O!gMDZtuY(@qTXSS_LhTM`IXz`IA}WY zBF^$Z>ak1E)bQrXms?2a^hU_FPt#e z*ue|?)9{a8Bv$=d8Md^cIv#rl|0wf5*sYU5zuURcKTUB-;g8Yh&Nqe6G0D}Jd1Mi@<+W&FF!@PGC}x@{AihE!pnA>G!kUMX%qtX<_FAEA>qSywwx9 zqPfVMAL^f&6+y0f$#p|{UHVH02GXgOWY%O&bC zopSZQoOs%}%01=Xn96M{`u1&+4i6sDBn@Bf6+P>R7#U{$ULvq7PxM{%GV|Ji7B;fJ zRGj1Ymuu7T?lGB0SIxRV&ADiU>gcxb5^=0btxM#<&;NR zB`10MKI_GQH6`AQ5GTO?>V0?z01oIWS=>r~w$&zs_IquRWr}n`R9ZyM6F>~V+E;fK zO;;;)NEH5Gq!BALfKi%#KW+`QA~p6(di`PIDmbuXXU{nbm; z`J!dR!#?4IWz*1ksSkW#c&+<>)OzNPUKJ8^*_Z@=;v5!#L`!C}o!9TniuYrW&$v14 zu!r$s`+Wrq!cX`6*uJH$eN+fX_U`eiFJl`pLQUbJ*OR6+IA$`JE=*Q_5%-4?`L3*O z6#UQ^M;IydGL~EY3Zq_sE#hu&*9g}+L&{cW&`Vzb)r-CCtw)m`w_%41j))osuej5O z<5YRt`QteTQ?%W7v_AfA=MOx5vHU zb1|A1{>-lJuk*=mm&q2llwH>KbcsOM6k$ z;g`!Gdg*bC`dPQ%wJ`)nL~} zbKMr6@LYap+R&tiQ0YTNV%2UYwj z_S;|Yp zkXHMi)Q*eMxc9fcd08Wlxi31@`Mg|1>jNa7EM7rEF%8Vujja2V1dku|U)K@P_DQMb}=h+x=5v;I^$Hv#{v?IXTv% zLX%|Fx~AP~Y%}I=*XRGbtM9nLAu2s*!E*Yaaf+;n14i_$k)n0elm6R1>vJ`2=HFkE z74`1fus_P1;Hewc4Q`%%$ROq?R*=7DnRr$+%sS*C3ar2*n`E{mIG|fHm zsd4r0#z~$TT^25@j=Ab7&q8#}PLi=HzYp!gjJ-1M`fc{$&(3q^C@vk5|G8FTC;A2K zfLOk4DK~e_yib@ioAg_YZMv;-PFEW8FzQHsgd}{^T~?ucCj$fiPh(F49Yv9LO{X){ zNv0=rWHMLoNk}GlLISxH5^|D|00uA|$tE1jZ3GG919KRk>@Tah;>sbqE3!Zomjwh5 z)>UCyuSNI4dM%5}?u-5lDtNJq$p3xy_4G_ac<;}9)74e=-QQQ$Rn?WQ`(NDf&?^-i z>-Oc0Z~WSM$hWABfViU6%Kx*(H(8&u`j+d6w52n7Vc=yl$=WyM2>!kiKUVG(&{)y#2QI!7ohWKfCzW-&!d+&UjWBTXD>cf?e!rjkK z^fhSz=;md|D|{Ezx3_ogIk@Wnx);yQA8I)9&-WAt2pF(3`Q)TnzIg3^?nu|w(~ndf zTG%^zu>G6a0njv+8Zo!owYM5X5t#d-z3zm&{$6ot_u$*x&u;%F0BhtBklN6+&^Ngb zU6~L5yXwdf^+VF;{q+Y9+!cT}TmAAmp==m>@t4?EKZ!ry`Q`UN)NFBFitOH!Q5A@? zV)-bf-u`4hVO!t!M(I~W*$sozJ>Th?YJJO@Xae~8Bvj+K=fd@$aP{fvgD>?}J{ng2 ztK-Wy9T_|`GmsbjpSthg)LT>9;pHxz$aQMlz^%9KsD6H5XHxFk4|8q+AFWecu8Xf% zEqU(a?x&}fHTRc&xl#Ml<>j|PTWW)k=!|}mKI!^3K63l%{rl2qy|J=klhOT~MO*FN zGgmE#-A0}89R@r%!T;zDPW=(i4u^xl4%RH#Gh=>bfBw}?PpxYGQvm#pU+CF!`qaBP znJWD>wR7L~g2}tTJ~{tf^Z8*F$@kwaHK(CP>G zFJpHk-1$1I5ZIrdT^kdB{jZe|es^Tsm%sYzEfto(I48QPVJqSPtl+T6Wph9HeAB$i z+ba7WUs<;PZ9nXS1-NU*cYqKqmydj-oiqIU(|nZN`&{|XgC{B;d;8m$idX&l?>8kt ze0QD;--P-cUiFKV_rIN0cki^)?BlLaN=Km4874{}6x`5s1-Cb>?>#p0oo)ZA8M+p6 zqe@hXwEq7nqjGN6$XI@M9?wC0F*Kf^RvT@=YkNHt?>uTj4zUT2{p6~ln zr+F*R2MGf+s-AeDa+38Ad+Po0>$(>5U7mb)?T>`m;Nf$qmHua~U;U$du;$?YA79Hp zvou>p9QCi!|EPKAK4kQy_2S_r3r|nE`}D3$1u+SyRruOFmMri|^|Q1L{t(t)%XoRw z&!1@6x#htt9}WEXyb8?M-pANot!umYer!0ukWzMin0dK*|D}g7CSw##O$4n4f zuVVXuYf95obFVy8|Ln<)|4KORxun95*nK?)v*yl6_=wVb=Hv7ES2i^sE&9ubjo*B_ zXlw%HpGS_{uc8?q%KzkA&&m3!PyNu<*_gP0o{AHAu#XZBo!@_T3T}-DAAhv#W50j>qcPGY|Jw_H zKwXY}(6sBK?Q+v*ZTHe2e!V#W0X7AzvygYJ|KTsGI(jW9oL{_IyJzF(Ex%9w`m8Ec zt2!#&@yx4FqWoKad!~N*VpsiB+3&5NSbuJf3JRl&B@1XtWsEp`d%68n3~Iw?_Z&%E zac|9$2MSZ_uUuX~7CLFt{Y@Th$yJOXvRKkR4hWXk_BZ#An-z;;l!qFMVur*hls0iyNQ$-(&lR zuWY?d8Ia(PF(r6Exb5?wQ1}-*P7H0>{>RFpuJd^X>eJEQfu@tdK z!gDl*4RKngk)~#J#w=Q|#Io@&Q|p!C+*@X4ecJ^%&ND^8(^~Oj79}to9Pb(m zr;PRu!A@@G67cX*9ZL`;yU;fvusGHh8U<&0f&@Ai%vKp#mbNF7C5OVnqvHe?$>KyQ zf(gqEVR+;#5NnAs!*QVkWV%9Fn%EQ0G6gssHbs=enb70(foaUOQQ$%*i{cvD0_W=1 zI9T6KVO1Wh5!w^+SXsuhWZ8lG`%M&J9R$cU$M1U{oz0 z2S=|OSaRYFWLaDyV^UqglcH*#Os89Z@8XhWeZi6?QXlw|QFDVCB%E69*4 z%ivv6Dq^i#uMS;gR6>-`;_)eVGn;l#0q3x4yR1jF#Sj{4F<`w|Ekub)E0se`6#xeT ztTqF!2PTXZz96w*+{LkWrl|SwI4aWjJDBEl)Uyle*EX+oEP$Fx!~iX}knVAG*}x%=*s1x??e zR*Hp)k_^lvU~me|E(#JW5qo8pN+qHg3RK34Q5IGr^vDRK(YAA);UgTP6bb(Jn!tkP zeS2lACKto6S!9vCFD&H(g+QFj`69G1y;KGPA^7AZ1J67jg(Ig!7cKYtXUrs7)DI0>ZwfKM2C9 zQDBLz3R^K0>p)ynzfs22-0zh2a47M_{$yEZGeKyc$%o7=ZWAWTF+4bBH&2Yol%(?{ ztc;Q>O7bZw!bES(%h9J(6P`|mv#ANs zrY3BroSEnJHX>~!IbB4|#dQ~>qByarc%H-&dXkcmEU6?!D&b{OE{k&c#3-K-3Z`-@ z1-viQm*wzW8TW%;(WsIeL|;Qbsww0k@GTmpo z8O}-oS8;@17jl9r7Ev2K5gIIX9h?Y{!xhyr-QFehb8tm5{ z)!VDq=^@G%a*%~2a*#p}k~U5WInp^gwHzBlA&YHZV*``vUt^v z%0!h9itzgZLF@6b^#FAqz{a%y@yVy~lMk%*#1#?f)q zWKNjf5;4m5cv!@0E+Y=@)*axa^%MQ#xya2fa&rvvi>W}k3<lFnqrN+Jp^oI*&xpMrr@Fpvrs%2~*3;b1|F;x%q=ERejb(Hym8QZh$4 znZrcbCc;Mhr;u-Es?L&Dz{3q3f^xV?rbf~VjjuS$N|vyaC0rDiF7kgg*(I9W#lzji zW}_1oi-r{X=@=+l4HTFbvWJD*vYjkvC(FeUj~L?NCOf*xj;Vx~nydz7JZV*@7Dy{_ z7^g^YCo9;=qI$~dDJK&xnPf1K^$dx=c?Ay0B7K81^}PaLs*fDqYWV8$>KGorc;OQU z91Y)j7B8RS`zC;f0sMFe?I;QOEapUWe?u1Dw2# zSldXRSjxpxE;-&k0?$8ny1^V4^1O}AVWV6Wk%^)nK7(=@lrvM#OgTH*!A|UB$PO`N zheWbNBH6)1X7qSc{vV?G)ilu)!Ae%NQg<3kltYPf7KEpkpvQ%fbG!k;62TREOgz|F32R{V4pjOyAH;be1gKulsn%9#X{sQ#M(hZ zI!H)8H8ed97i5Bzl}I6t%`|?pQR}x+>yM>2v|5(M{p%jveLg(Q&U@Gb2PswH#qw ztpbOCDjx8^l(+&Ig55P=mf%AM48Xgp@zRd1yi5lCG~Z+mO0pt=ZiC1?I5CQcS&yV; z$vBULsOFMJmQymBCpL;5TMiNvBAW~_lbjO@WBu4s590tuIAVAqiXUa-;+LiP#SeJ% z;#=|#IM!D3^%h3oO{M}Br523w`53#ulAnVOFQnmXx$tPt080ckO0|dS6``URYkMc) zr4}y>P|0!&h-^?SX0^an*dS|hIw7*jqU2=ZTJKnW7j|1jlm~p&Qb1yCVe=GB@@CiZ zWHB05vu*}2G|tJ@L0$aXzDMF6aFf9-um*r@6EGFEVhSP4^BU0`@8S?f+j7dbps^CKGa~iNp!Z9Jw(`cm}rd~V`^~6i?#>1o@q=_sdUOs7nB8Svy zy`Ff0$YHke1YuKZ910Cz3R2~`0WzPtvIz2KQuufPMtlW8awr=qA}Jspb{C9uO(E|`yi9Uxf~ z{1(G+pzRb~hxuJ>E+jxBh?O+RfYu282}>TOb1lHkNAS5N;|bi%l9S|gn3p5VFy}XP+}6+V=Z>zyJSxzh9&0 zIqO+#?X~vVXPh%CeDW3KAtEofufHaG7<>LJ7yNeUggIx#qd9bc;Kh*-8;f2X zS-&=t47MiX&52M;urU;i#oL0b!@)#*EEtIetCrRUTjEXOvh3`PQC8^MYNADkm+tHS z^-XrR9x4fD8k2~=2aR88SG<9JIkq4+qCDA~s@|;N`paL?(8NOxTiBKVclH)l-sDBx zr7ZUloyZMw$e%%3(7pFM(a=L|-=ZkjRTn2e_yU)ES<4xbCUB`*5CV?HIS9!3D<_&) z))wB>2Km(MltS9X2if%(Bx)#2BomF$$uaam;0Ec!=K3o~$g)H@8iykv6A{{q^WG{% zLpkzl@*m;<=@xkJz|*e`4A#!ycJ({Cw>|Wxb+!FJeaQbgI9ChI;BggyJT{q>M)l=H z+pm?8fz|)^U&di)(!9Fk=NUY<;E%_dGp3bIDw{fK>g1WMNuwxm)M-Se-yymJ`^U#Z zu4_v~V$DhRScFlVhp*D*byTZHa4J1+c}*2`Jfcr4fNfqhzM7r!hat>ZIif2wFc9P) z##F+dv!8 z49dz)ADct(7fu-CqYq2}T2w%-o>=}s`oIj2^w9zDUyFP+bO7Tp<3_)ajxFSj1BN_M zJdlcu+2?oWZNXx?*TdF}2ER98INg?ZZ2oZii|5$<5_-gQ_J|T1?LB+MKswwwa;T49 z&-rrXK>8@>$e|_l8?in-hJBtDIg-Y**T;CV$QywfG==~%H?*R z`U+5Sw$ zJYrinNU=27^XTiG(OEMgrPF33kCu;|QBVQq7terq2710hnZh1PQ!Gnmuvnh3gBB~4 zC?5@0Q3jHMn6DPjDEJAY3^aL~AB(NrV%frKEcSqSF0$CoW4PQhi&cy5bc;oc*|yqZQwB3@w%8{n%vvn= zSE+TvVn#mO&a|1t+-$M(ymh00N?R;8dn~hU7Aq)ab~)H)wDr%7-u!vAomnuCN(*}P zp8-2dY;VJMJlJ=HePpq7g?*Xdn|~0t3xw^oY+Ho=#EQ99*nO65hh!L!41YqoTjZ={ z7F3VE9qcyo++^;`UjlZouvuWsz#bO10_`buFg%1CS-bMHjqMZ^wmV0$al+DvC^kvh++xM5 zg#DsKu|>juJwUM)!u~i$vDL!}$(*p|IQXmFH!`YEUz-%T)$nf7$7q23Fu0 zZW7yT!xa0z9K)+%e0)2^^H(L4MzQBD!g_?=KtC|JpDi*j&99&vnIWckjAC~Pn=+Ew z59tnx`LXv|wAl}7x3DEX#qJXpw%B9B-X~>yO4ztG#kz%MS?s?J&&WLL!EK#0{M7Iu z`@O>MpgqE#7j`E-D{LgrXa((}=cL@R!tSEyg`FzwZd@}Q^8#VJ>F2`M2)l<~5cXYR z_tJ~PUKVyA{X*DpgxycSlzeAN_6O)C7kiN25cV>jw<_o%>T%f~ruT$>Uu=)i$HFk6 z!t+u3%;otQZU%g`W#aib`GvhF>@e-dPR*!7D}6 zEZ8JCNN}d$4Dp#J@+E>72u>1xwa8}y?K-@ayAruRDq5*Emt~&<%?2-Hv5#?-;DDhl ze=gQxIV}Gzi*fg8#{DASByw*NYi49H&H~!G#*A47&AcMUqXl0W&GJtKUmv*2<=F`R zni9s>2Qn@xYSh-NvYMg!k>E?CSNsP@Y=q{Q0~n9Z z+Nkv}<(>u2Q3Dwp1~bkXewNGH3C+^MjKc-T3uXiD8qW1^fpw(d=yaBc0&VL!|HaUF z1?vT`PG`+Z!5amKKyUl69e6pcEq=zH0gUAtj9->A?uEwooRhvCn$rZMKwF=cem(T} z4r08$=z6W+F!uYiXqWxL*q!jXT<}K0-Gb$V_=@}eK*lVQzY_Ta!4sev zNYk=zhjmESE?}ixp$i2+P3Kat3O*_LzTnRU{~&mm;3C1>fJf0+zTJpfM2`Xg%gb2p zd(8CFxZG!e!-hT!{BqdO#q*bfZwS6E_`cvLf?o)xc`$zt<_H!F76}d$ED;7A(AL;eHaGR<-_d})()J&ztUFm0-4e;+U~ZMtShj~SnKv}T_VnwK_Hvsb`o zY4*XO6=}z6_6XQqi>WrN_(rxaP22nle_L9$?dd<;-{E4f3_j?YuWi2@oJS5@QG9ON zaoQFtzQD!K8*tFGK-(@IkcX8U`}{TeFHWm*vG1iF?_zhPE!6C11G>`|X_hQ-*jE2j zMPm)yw$=Y!(J!^rG*wjQLEL+Y?9|{FRG+S(N5G!H(&FbxfvadjdBPJm|4) zdjeOdu7c++Vu#Q#E9d=LPjf{~lc6Rnb zPrbHn%g!T*`7?+3mTTL<%#kiOA?KiHg|;1&lSd9a1Lam~+xaMGv#ov}3r@6bTm3v1 zXeMXnByGDGwRYIGsI|@Z1i0l-)*1M$*lepmt8kFdVFL@($YGlhouSwhfhGTaa zpWCpu@ws)_6|k+*wi{q`*!sLdzGiLf$VY+G-Dqu6Y# z|Fxlc6tkji^>e?DYZgmko8jr$_>8q`Pd;M~wsF69829To zZTm^V@ji!fk8IbrkI~N@_U^EQo-?$qK7}>I)3M!{cY<%D_S}`X!o})KPxWomw&v21 zi#7pIi7nJRZlN;!vdJulTZuBXGeo|kDG*VAUI zUA}ACQW@9f9gl764e%9kxsJkDfX%l0`3ktgvTgPA6=1X8z%3=szAJUPhf6kSrtum*ad6dl6@BySBZ77IYZT3$E5So)_3m<+~;&pUqV3UaQOTS#cP*;C0%@ zEod`!#;#9^X*1PZzo*ObS#cQ0yg}PIrp;76Z%m14GgZ%AX_UoY^LgRn_W)& zgl2x8EB?T?`FXDBunCzZ#t*e^X68E{o2g^CUFYLtu-R6BY3b#@AL(+_O1Ep)8{mHS zV_lB>nZvlB-JxyV&upfS;Z8fI9D~i&`P-$-@%eKYpTE1bjnALM`25|iZG8Ujwx8p& z`P$@9W%+MUHXom6Y3CMw&v%b9;VJUf;7;Ftntd4D?R!A8?L`mz9@K1G(Nn&MZI;a~ z@rY*J5)R{*cvRcCB^-7O?m1Y+mA^gN_u+ozFdiBB^JD(olg+*0al6g@XJzg2J)zl# ztW4jNnuW&Xk;Cf89P~V;ZGS7+<8#=D1)08X%k~Vd3%;nCx^8XTR{sdxs~k2E_pzVo zn16uHVXwjV-`dt*lt&I*Uv$v(bV@#(seGFGt1!!R*h0+m9JUL#XLN=~V6z$b$RWO; zTDD$!B61j?hdtWH=fP%M{g;hC=y_Jhyn1vVIqWj@tmm}tI`k}uT~_*?de5Khvg%t!=At#Lt&SomZ>$VNq4bsfNYha#>@e}PEwx|Dj*c|p4Y;S7Yt(ZqTjGuOYqiw&3 z&0)WQ?YEXq)x~D2PiW@96f-M_eIGL`hw=G)OK0Ho=P*8hztc88e-7jG_j_&Q^XIU# z;!k{k(6(8{f7eXav&Xhcn`!1Bh0(@g(=ggNjL-Yqb~!(vcZW6S=KJ2!wli{%*G%Pm z*S1MM&HQ`}4&!5R80Xt-my>)B<0q+o+Qv^(4m%zFrB~Zp&|e(JeQ>|FaUXOT_rdqH zjr*X(xDOuCHtvHihPu43ZKt9x4tpIj|EO*6BBsNBkV)wuXxlxRnJ#ub`pZFWTZ#VS zFzzoOY8&?#hjD-TNZYu-*i7BIKDKQ*4};Qerq0pdY@7dP9IeCdz|lI4&&p@olY4>9 zRFuElHaXLp`F9Q2<8#JbIYb;+Du(ln)w&t+1_ER@NDm}Gtra3 z&>5~qPj=XonA3i#ZLeca>#z}+hkT`NV=)i0nX1dzwoQ)DX4jCJSC(!w)z)MU`?3nb7|BCd0X2Ub?O3&8pnZR@DxtblG@tgEQ&0g{UC4Hc^ z?7k=M#emmuy%dI7NpT>@KUmvxGKTw$HOmZ4^bgVO=D4ItmP$WYzO+W7wEMhGv1M zMvZltk%?w^Y{qD}?ULay__fXW?tPRXa4NqnEgNk<&c&M{3ZCPzq> zxvWRZdZlb?t-eBSZGS#$lUQTdux5l~y&fNxn|M=#kL6JLoRKd5*nd@i4=rQjEO5pv zi}@I@!M8*DJ1^=?O~mW+2EAR(`2Of`^E~v-{zr3Y3mhYFjJx%RYLwNjcgz27*>Cqh zH1eUEL+j&?`L9^r{@)Z|`DDr!u>&uc;Ei~ZGo+t?2iJnFQC6jKNB;jt{wZFVG3i~P zhpxfvGG2ND*F_rb9K_!fc@vs+nt?IOPtTYBPr6=imE-yd{nH~ydNf2UQ&InI@@zrFyAC_BUyelu|ybPr9v2qdeb~S{)ik zMNs!Rl~G|3uUQ#*Q|^BspO$;XKSMwIr=K#g;oB`#fNdbQVr;{)ZNat;TM4!+v5mnt z0b3ciDcFv}_9F@)MgTDah!H@H0Ad6XBY+qI#0Vfp05JlH5kQOpVgwK)fEWS92p~p= z{FehPz%~$DF}C5@wqV7WT8jXG5M18SkbW$HI3G z_H*Dn7q+>u&4uka+KRV?78obsSe9X1j_pJW8z*5q8QUq?PQ`W_wg{bv_bIku`wq5Y z;De2I(5-`R9dzrUTL;~G=+;BG9=i3=t%oiOT@<<~bW!M{(6vC<0$mGqEzq?<7lSSa zT@1PybTR1S(8ZyPLl=iG4qYpBt@Wt8_%FH=h|fNN7$XG7o6s1O%}epbKhxwV{Vymuy2O}i zPQa7>Of!flY_IX*@X1C1ILoMkzdiB+t_My-*#h)Gjxa+a%%pPDk6y)^a_F$hylB*WEFas28Ju()cud($+$$KjD7T_H!)-*`=Cds~*z7Ksw^ikRgYb)Ij zY@=P!w~Kxg-3v{J)aq<{2=Y0i@1)0(akFH+0PS0Va~_3en`kbDT!7E$IpY!H5 z@^#4Q$M;WmLUWU7x+LQciGM5d`tdC!E_FNdnz&y0c<;n_L<;b25Z3cIJ^XY(zNt|_ z4~XVrdJUS#={LY``UCVo5&bi?7n0X9w`BoSy(Qa-WtgPvefT!FUGa?gry+=!fQ#!PyPt5-Q6LiaZkXvAN|US3q8x z8v>r5+bEjzjq|BB*JE<2ZowWw^00=yX90tP<$?`@oq}D0-GV)Wl*Xlkg5`o;X&j+j zut$)5tO@w8qDynf18>VM7flW1hjVLuH_(f@4WfyN&o=St63vf9?iTrZ$bZT`0L;jv zbcvaM6_w@%MIH}%ZeF>_HIPrtYY;gCd1GFu$lD-amDeTmk09Tf*Ddn%kpDZcN8|&L zf1h_CoohvY$>P6?{+1W;vnD8-@z7-Cmy28jd3=6@$Pvi%@;gP|26=gYm&iYYyf(jE z=Nu2>=7(45+A{C!5%>xEHx1<7sR*MkgG?Kip45eF4!R0 zDcB=OL&Qh0T(Ci~Q?N&nhKi41xnP%Iw_uMT4P&1M!A`+0!EV7GK^iVTf}MgF4F4l_ zxnP%Iw_uMT1;t0OT(Ci~Q?N_0Td+rvMoMuuHI8ut$)_ zioamFV1r<%V3%OGV2>b;6Mw;maXabuj82ie1iJ-$1Zli@3YL%GNgrf%irgjGE!ZPS z6U0-nT(Ci~bHYwKJhNNm9zi->JO#@I8w5KAy9B!hdjx6XPFj;$K9Nf`2zCl~33dzi z2+|Qd=?9tRM~J6jr(l<0w_uMTl}Q~0%LN+*I|aK0y9Ij$=}7SxEEjAL>=f)0>=x`1 zq)Fm0ST5Kg*ga_{?ak~FnI?;mV7Xw!Ddjy^MG8c6Y_J}og#NZ z&d%u)xf}A5oNkeOAYYZ!BQhQHE=mOj8w5KAy9B!hdjx5gcnUTMb_#Y0b_@0h(rob* zY!K`e>=Nu2>=C46#Z$0Buv4&0uv@T4kmiV|V1r<%V3%OGV2>cp6;Hti!A`+0!EV7G zK`Iwd!3M!j!7jmW!5%@X5KqAd!A`+0!EV7GL7FF?f(?S5f?a~$f<1y%DV~B2f}Mh0 zg582Wf>b4*f(?S5f?a~$f<1!4YW8dp>=vZ?tSJ}l6zmo>v4-ctI-wVs3(Us~08))59^&0suD!phYYtP)Jcs?~I?hRg%21gpWC!9r-3V8v=FR;y~UZm^7I;(7lV zJnhfI_pN5rsaQW)MRTYTt56YMML_8ml#Wvsp75)&els7>_{Y&kT7Yjb)X@2KJl^|X zNS9(Y;c{Ax=kq1>eMIk~I{Y}?a=f7&!LK%~!_)YBx&zU6A==$oLAnPK??c1~5b+_b z06juU;&)?j$aoE(6%EV!4RG_I-vh7kzXN=GFv}Mg?*~3PfaMp8J^*Hn{22K4=+891 zIh3vM3;t~k7K!N8!Rf#^#$*HU8OYX`1#d4XgeGqoYZ`|RhWu8>FyLj`tSQc9c}@yjh~1lgIJhZKCSn)~GD1K3nA2RUB2;T^~CyAJ+~!_D}PsBK~(uX8`{=;#lC4 zlH-62CC<7m_ADr7941FpmCLfq=&r+|=T2!3)w}aPUcwob<}Eq63vxCK5hVEH6zjduk*ider_&e{`l zHr+kyk za!ysuGjqA8sa#5

!ke`v-Asq=oR!vmQOD0|8wxqk1e^F0H&=1S8jM}56y|E=_> z!{wTq7+epZ$%Ep+r*o3PlSlEDd!69_Ke8G}4UD8bntJdF6n~pN4RRVjSu^nYLptOj zK1ncWB+#T1jIaik0!^&NWiXRK)&n6672{h>>)WX0$qXP0NsD*)hMSACR`Au4bHE5I8BC~<-nASm#AhUsc$8yN)k=elgVAhPJz4u`3>AlPJ^68egk)^Rglj>W&?Mu5adnBZ(vQj5%O8cY~Wjf zVaVqqr-3_KGvv+4Y~Ztq2;{BEY~T*J9`ZJ1Hs~UtNf#rtfpxMt4(-$d@Ct zLEippc{ZD z?x~w0-vl&qZ#^IK%|H{sz_kVPPN0eV?1hkT1DaU>-Uj)HK$CuqIvTk9UIO_J)X~6- z_+^lHp{54i1vGI#z7q0opo!J-s~|rBH0eRq)WF^OYRHeGrUvfN*Ft_Abu{P+powpy z+yMD0powpS+ywb)po#BZ+zk0ypow+#9gv>~n)r^yPRKt8n)FN5*PxexCcTXM8uSX# zq+g-F2G-ht1o?H;+Q9b^?tuIzYHiSOfF}JGwKniAfV(080ka7MZ{gnq`EAT940;D> z(mouAfj8S9fV>~aVc>1`hamqEvkikj0GfDb{4vNM0!_RJ{siQYfhK)|V>0Mdphou@24Su1~lpK^i#(9c5t8pmqjGri{_8^+Hen?Q^+#*2`> zK#ViSFCqJYCZ!uML-qqr$~1ljISXjw^MThO=KxL0HC~6D2Q=|n!JCi^fF?dG_$}nY zK$D7%-$5P%H1X-dA0Q6{nlv0Mx(1B^nl#dQ7jh72QmL^IatY9+(Z+trqktxjHx57^ z2Q=}!kAH+b0f_OfBG--N2#C=PpT1#a1LAWnBNK8h(4;ye8}c$BMl&N9@=BmdCmQ*XPXd~B zvQY^66rf3`8UrAo1~ln(V-Vz3K$BJ*gCREpF@hOGAcuh%!Hi*$n}H^+Ge$sO55%Vg z#z@F5K$BudDdafNq*h}zJTJs`#qH3nAYI#295P2L8%e3Vh8t0r*>^4){A`Iq+R$C2*f{67Y}4DZqoqX~0j6RlvU( zA>ijmBk)Tj4D^`Iz%(-g%rw^nv&|M@p&17bz^5xFJ^@SuhnelbQgb74wAo=q=oZi6 z7~OC690B}+=Sbk~p2@%;d!_>K^h^id*!&4uA@icxsD!( z=Q?^4p6ltq;kllkf#-VK1JCvJ96Z<4&)~V9UV!I%`UO0r^a?zq^eQ}~^lNxV=?!>B z@r$Zcfp5VxO23C^3%vu+7TOEX7V3p(3%v)=7J46^E%X6ATj)c0#^}%RjM1m?jL~1= z8KckO8KZx|Ge%#)Ge%#*Gft-WaG=+F1kmR_66p6%24;At0<*l+fjQozaZfFPXDb~B z&sG`;&sHjeXDb!Mvz3Ozvz3O!a|4yYa|4Zn=LQ-B&kZyVo*QTaJU7rpcy6FFcqV8H zJQFkxo(Vb%o(Y-(&jcL<&jiheXM*OyGfDH{nWQRsCTTuAle7SyNje^$Nm>NYBrSnw z8`XN}0+)F!aHp+@+)gVXZ={nUZ=_QpZ=%y7Z=wds9kd#92Q@)Hlh!~!lh#5$i`GFt zi=vPR;7yUSn8{7YjI4?lQXS?OVYEvJ?zO&i8Zq%pjTau-*Y9NG zOVOp~2=vVV=7lGs`IExGk7f#xTE)<2(Gymp2du<7T!}Nj5@&iPR}se-llIM_A$Y^piwr}?8qnhxJ)q|` zmMMPb`4%s*>;)DtwCsfzKg_ZpX7K@*eSmPny!|4{cLemD|43^;+1gLF{HM}ihOm9Q z#iv{RXp0|h@tGE%Y4H=lx!f`C2wDxCPd%Ra9?Q$NKO8etoAmJBS`XAHFc<+vXfBSU# zLey?ce=qiYe(ps%zT)nsBZhcnugc$V+3&aP_gnV+t@sa8iL~>>R@{fJxQ|-=QQ=<9 zdR0Go+~QAK{7H* z+J9{A|7`6)wf29NJ<%)=pMNi{^eF$6toaf*g zLlY9sJ}%r=(H3usG_D9m+r!B@O{-Q-nMAYa%*1{b3yrH*RYj7m(NITaG?YwE6=nOX zRg;x%QUe48S(>P5YN|+f#2PuoWY%)g$y01e1UN1Z#X7W~woaaE`-xD8TG_E|MM}YG z>|Pa)hTFp0ak?F1hAqs5Fuy(4h+R!hOKUvQR?*s87fzfJX$-Rt2ZrC4U)|moZmJA5 zu4Ubl_GmP;Ix6PsSbIx2VY3t3!-)=?EKM|p6X7PeP9j*r=Y^6SVLpOYv^PZ%zbf8{ zV6nEUa9b!6wd|FNaHuU3kA0hus&`de+$ysOb#_=y>lnTZdzp4B@4T z<*iMjws2o-KlS_enjLyv70u0wa5G{ri^tn6^SneT*0{Dmi$36fO1Ubd>e+u)Qfw+y zimFEG(E9bEvI%Z&*!4PqcyAsjlLt#Rf zC&8*B(!D}BLom78j;qnNI%1Ep~bw8&U39J+4NK^a0 zSxld1pR#GL<99WlTdlf5ijnUfwTXCZIMJrs(izVC%{TcdQTJa&+4}aXsYmx4X$DuE zW-pF6wMWBqXi04a)z7P>%9AQ-+0u$Cs;pR2S-q$l!qUaHi>m7(Em*pUAzDRs6^p8= zdP&7R?CL7mPD__muUcHQWO;ox)zsB3ucrCSs;f`N?l`KeUR*X zePVs}vLzLZXjygr@?}e?u5wvLEv>An6_@3;RKKiZN!|SFWwfMv1+ab@&97Nur>LW) zbyU9q8CES=x_lWZvMWivl(?W`(R@o=zjCQ1Ro5K1px%;EQS|$|+Um-BT3oSgVRb!K zRo5=9tEtCPFJDqm6_u6Mwe_fDWpxeq6?Kp+R)Vjnsa}bit(3%76(^D8Vxe|Af56}WlxB!o*?m-W03RZp$2 zjJLRnnGl+bFAB zlPs%Si)uDeeK^^6TzjO67Q~}XR1s5AYono9eWV3b%qChGv6Z-5C7_M6zX>G+n`-Gmx-W7>N1Otl2j!T4^!g5M@OsT{_94O&5 z;VkHS+F;93ONW!&v?vk_ivv4zx76O6xSCe$xYb-eS4XIeHtPVk%;i-#)+QHaEB8@t z(}cUM4!k_>c-XQ8<|%}&;9AL?!d9$yTiM<2>^fVDf;}qRlXwseC$vY3f<3HjLOZxQ z+qq+Eqb6*zT8ulWcIc~PKRwOTUa1-kI?;GXIE*_$s9E&@dF&#YEE2lMqR4t!ohLVW z$irlo`#;s_=QYAO9wybJ)eL|tR<~Lb*JMekMRh6>B2BVmgWW3HAw|(@O=ZN2X=IqM z3F)coNlYl8Ef=+JbjxrjVQ21~?Tt8)7%D6Saa|h%Eyi@1RdwOE6rOY&m&D=0wX9vs z5+_m;Hwa%IJohFh$H!NTT)8$BYYuBQH;X1I7oAmME-!Ol?PVW7E;4zTbqw(s9)0nI zB^s`kJT(jBnmLRsr0!FEXzfW|z#dC=nG^+w>^r<_&wdS($a)eNPgdaHmqYtDcZgy| zJQ^=USHQd@fg`nSXk1wpIuDff(1L&A8=p=jX@B4Oj@$dNpG8QTC~d zK5~BA3{xL#bz3}HR@j* z5;7}=i_4^)mM1YzX@=S9>h|Vl9*Z1ZMKT#~Ssm@DkF=$#G4+&MSXaJN0yhfu*m$CU ztD0KYG{?|^oiff1-qF>E5@-_LsU3r=W;n4R($o}=IeJ+f;1v`{W!IhujuqiV|Hhiw z8h*Csu^<%vMz6|vY)z!O9fy{Zp(>ngOknDmqEu}!p3B0~&?b?RhgQoPOdUg2xG{pK zeB{DujbZK6KAYAer=zG1;cCYa80v6z%ff50?1$-zeb|o4)^N>uiBku*#&yxRMOH_m zSfF#P+$Uu`m0qVL*2#?=i+j?djzd4{Gx#}+>JxwptT>#3i>oc(xPEb*rD!v)#AaP? z^=okpXu_S!EGDHC=HDs>UiK`Me1#-%sOpsSs6;iQi@mupp1Du_{nk^dn7Ty z@V+L7E{k)&EZ#1>&j_JrfNg51kqdENsI76WNGni3#rU4#Fm5Ei@*SJQ=0{?Y<2$pXNo9NouxuP2<)!5<73c4x0$n0D@ttG`;x`091M0Mrsn ztd~QwM2=^Pyk@8dAWV}(Q8fbDqG+ssizyB-Qc?ZdaLj%B>;^vc#A=HwqN&vbG_OP0 zXgy{FOB2-_+L2;jq`5hqaBKLfPfYw|tS01GI>n;8C0FvqJ!*Fx?(mp|#M&^cf|eV! z8uv+ca7xlo#h8x8tOsOrKN?e$ESD1!_Pwh#LB%m~L8*`;)XQy?XVPj)C{i6xxd`(* z6ql6+DUIt%8k_faQ*b8@vtoWC-hwNL#rn7eK>~Nb6dJK`U0(LYARD#oE(DvR(iu6b{@JRVIpV4xB6Nmz~&y9j(i@`DQo#noY@cTu+5^FWtJA5{%L zL&F$oIdGX21&^933ienSimeXCTrpD=>`{@l&F)&rAm}P)SH-Pof9WkQKR2(jpGjOb z?xW&5_fc`wzKBt~M3Y!} zqrS@BpIY@DY1K7F>yq)9C910mQ(|;aM8zNzPhj;Qod;K1TX<7jMPnmAYJ+lZKe}YN z6@v@rulhNiWvg!?mUUI@<=!&alLz)-x^wbGE3OR;aC!81^ZpU0ANeSWi*yQ17SD^@3QpTNh& zn_44k7QQ$V16Kk5iA#&+>I~iLsaR%ENnV_;aJ^?>H&*H-p$toaEjYY0kaG5%X{%PX zt&Qk*)sxpUz5vuAtASG0&zAM1B1w^0W3;^~Y+GuQH8ES}gKm<^g(_{!jrOOG$-b8X z_p>DK)G|BPH&DF0Cbt-uLO$emao4C>=G;w_6z6vc+zNdOxF=3!6|opr_4%fyo1#yv z@ribOedExMg$=Axt9z^~n7-niZs%G;D8v2h(8gdLx1l3cHz3uk?L=MLLT=!eI9151+_BOi*P5DGJTw6FzMsM$%B!xEMt z6CHAO@|9J|b;GMJv<8C&?_IA`NWK%=R4U%{vEwR;HH8vQwV}rKm<6$#ZyMT+`4G#z zD8_qz&yo)SLJ6$UkTrR?>#HW>>h_E3!GTZVVpNPLt30FTHyEe|OL^ghrj-k;_CEF? zy?5b{_g(ZLOTC?s^A?B7@4IO0{>QG`f7i9N z@1c7wsrSYoThf7BF6iC%$bkzlmzVd5-aGL0D+7bI^S537PVQ|Fz3C@UkPI*Wg?jvo zzG37KU@^x(pkSO?NQDN34I=mk6to+Kgk6W)or7KafP&7=iY~Y4W!C;`>;o`gFQr+! zNlQDlbekR9k8f9Sv|ZTyxE`I4F#Vm1<_CX``2j2XU#$J#u}76qTI%wGwg14{e`)RC zQ~S-9-)6(&X_ozCYySoIoV{RkK3c^@E*Yly*`F?27X)Di?2nJ7rz!sUi|zedGW3|dGRx!OwGQ%khO$^U5@Ne;ZuV8qd>CYH`&M=B0$WYFJ|L{MmfG;L>p<>>bP+4ye7rdYC zn;2#@e2qVbbIplpEx*T?KMmUqY$swn6H4 zT*`0-!*+)27;a?fVtCE;nHhXmHc7wnLtJbYoMxIn{Cm*_r(p}RZu3Prk0M-Z3s=~} zc3Zg47H+hKE(l&AnH^n-}A{;q3K@lf^=X zF`ys}BGwa(93Pa+jU3bGfnWaS6YRuqK*)t{u?g)-W)3bqR3v}%X%cQGtjt1)$w@ed z_;Z9|b_t2N7zU58kg_F_ZQ|=1A%G@&an9g8(}N(@#&GoG8c2)H;rKq-u;Dbce+wrZ zPDTA2hf`q?*}{kuL6#i9KgY~($q#xQ9lke}-;x{{Su~C8&-Mn~D2U&@{z{q%l!NBCE>8TcpSln?^F>o=WGil67dR1YEo74? z$99D$6gmdwxvp6DH0_J4PrzR~N-%P0q$%)2rlFeO_n?vd= z{b@7bvd8f)dmNeAazJp&0j7ZsO&=$<80uGhTnOX%LJ*t*ll);BSGHx)}W%YCDrx3^oqyfiPk#&v1d##n}h&4hv|=Itq&*p z(<(og2*RTfUmZ?;svvx?n9}iiXqZ1}7c!-6690$aQNcfnAcUwA{~AMTLF?lLUM#Yn zt*p1P4)5>#A$Ut0U*)Bl-yFk!P3Iene|r`5Qx31d_ZtJR^!}47*dI;wTbz&J7=xyN z^AX_rD%pS0qX^$%renUjsQ&b|-}3l!4ZaOcGrqaJ^`O#kX|DJ@e4YARO1nPS=r;sj z*v6N#>F93`VLcV~TYAPnEv#Nv`KH42@tyB)$=v4^%6_BZ4RCx9oQ~@gh8O0-st2=V zt-7+JVY0-rAIfAYq{9Ao(e(e5!BDemgUY|PW?27q)&`|whkkVm--xHV|7H~Za;|)Z z3t!8?SL|ulzY_!t7P?vZOIQDPEf6537W^fx{zjYBQ`M(I)Mr(?BK)N;%ET`z?BBI* z@1x%({9FPB_C9=>P1&^X)*p&V-`P*heV1Q}qP^GN)_dd416&meD8t@IA595` zO7~uNSMLLxdw1X8_n4FoCkxd}Y0>=`KiJ#3Ii<$?zPokb<@c%*d!O3TyZP>vBi+C2 zh6A13dT-i+)tHn}`yRP}-=jZBQK8}ouDw4+wSU`1y*J*O5^>*MxAb20P=5^|hJ9CD zw*QB_Q-j=f4^BXe3M)OmckW1Orf+D9N3Ytq>pFGZsnytZ-M;f~$8qm{;Zz1Nd*0l&Xg{1Z@)b5Pm}-0&7g{`1ZN?RHQLbr#5&+pl|Lc(hTvLgyUBKO~Wr5 zpbcn_{8||QnqmuntAKNK;D|zCn2+Ocr9>=4^fk!N`?atpU~Llnd?|0&ybAgxekXzJ z(V9}ve->vFo<#V!!c+^aKpeb`0cIcP6y%hK{JlE4L(6^OC;Y?OV6#$`Rw{KQ!Vzd=2h)pi+FL=rX6jD zPc3wmf8Oqs@S7C;`)Ka+eOt|GGyDdhv~LC4G>Kzv!P$@ED1+#EsV(i4;r9L?_V*GV UAyMTMXZ#PV_kXJUf20Ne7i}!y{Qv*} diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Win.Sfs.Shared.csproj.nuget.dgspec.json b/code/src/Shared/Win.Sfs.Shared/obj/Win.Sfs.Shared.csproj.nuget.dgspec.json deleted file mode 100644 index c40c581c..00000000 --- a/code/src/Shared/Win.Sfs.Shared/obj/Win.Sfs.Shared.csproj.nuget.dgspec.json +++ /dev/null @@ -1,194 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Sfs.Shared\\Win.Sfs.Shared.csproj": {} - }, - "projects": { - "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Sfs.Shared\\Win.Sfs.Shared.csproj": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Sfs.Shared\\Win.Sfs.Shared.csproj", - "projectName": "Win.Sfs.Shared", - "projectPath": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Sfs.Shared\\Win.Sfs.Shared.csproj", - "packagesPath": "C:\\Users\\AIJXZ\\.nuget\\packages\\", - "outputPath": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Sfs.Shared\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\AIJXZ\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp5" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "netcoreapp5", - "projectReferences": { - "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Utils\\Win.Utils.csproj": { - "projectPath": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Utils\\Win.Utils.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "netcoreapp5", - "dependencies": { - "Microsoft.AspNetCore.Mvc": { - "target": "Package", - "version": "[2.2.0, )" - }, - "Volo.Abp.Caching": { - "target": "Package", - "version": "[4.0.0, )" - }, - "Volo.Abp.Ddd.Application": { - "target": "Package", - "version": "[4.0.0, )" - }, - "Volo.Abp.Ddd.Application.Contracts": { - "target": "Package", - "version": "[4.0.0, )" - }, - "Volo.Abp.Ddd.Domain": { - "target": "Package", - "version": "[4.0.0, )" - }, - "Volo.Abp.EntityFrameworkCore": { - "target": "Package", - "version": "[4.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[5.0.0, 5.0.0]" - }, - { - "name": "Microsoft.NETCore.App.Ref", - "version": "[5.0.0, 5.0.0]" - }, - { - "name": "Microsoft.WindowsDesktop.App.Ref", - "version": "[5.0.0, 5.0.0]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.304\\RuntimeIdentifierGraph.json" - } - } - }, - "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Utils\\Win.Utils.csproj": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Utils\\Win.Utils.csproj", - "projectName": "Win.Utils", - "projectPath": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Utils\\Win.Utils.csproj", - "packagesPath": "C:\\Users\\AIJXZ\\.nuget\\packages\\", - "outputPath": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Utils\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\AIJXZ\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp5" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "netcoreapp5", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "netcoreapp5", - "dependencies": { - "NPOI": { - "target": "Package", - "version": "[2.5.2, )" - }, - "Swashbuckle.AspNetCore.SwaggerGen": { - "target": "Package", - "version": "[5.6.3, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[5.0.0, 5.0.0]" - }, - { - "name": "Microsoft.NETCore.App.Ref", - "version": "[5.0.0, 5.0.0]" - }, - { - "name": "Microsoft.WindowsDesktop.App.Ref", - "version": "[5.0.0, 5.0.0]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.304\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Win.Sfs.Shared.csproj.nuget.g.props b/code/src/Shared/Win.Sfs.Shared/obj/Win.Sfs.Shared.csproj.nuget.g.props deleted file mode 100644 index 9b133244..00000000 --- a/code/src/Shared/Win.Sfs.Shared/obj/Win.Sfs.Shared.csproj.nuget.g.props +++ /dev/null @@ -1,24 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\AIJXZ\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.6.0 - - - - - - - - - - - C:\Users\AIJXZ\.nuget\packages\microsoft.codeanalysis.analyzers\1.1.0 - C:\Users\AIJXZ\.nuget\packages\microsoft.aspnetcore.razor.design\2.2.0 - - \ No newline at end of file diff --git a/code/src/Shared/Win.Sfs.Shared/obj/Win.Sfs.Shared.csproj.nuget.g.targets b/code/src/Shared/Win.Sfs.Shared/obj/Win.Sfs.Shared.csproj.nuget.g.targets deleted file mode 100644 index 46b40325..00000000 --- a/code/src/Shared/Win.Sfs.Shared/obj/Win.Sfs.Shared.csproj.nuget.g.targets +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/code/src/Shared/Win.Sfs.Shared/obj/project.assets.json b/code/src/Shared/Win.Sfs.Shared/obj/project.assets.json deleted file mode 100644 index 931d96dc..00000000 --- a/code/src/Shared/Win.Sfs.Shared/obj/project.assets.json +++ /dev/null @@ -1,10562 +0,0 @@ -{ - "version": 3, - "targets": { - "net5.0": { - "JetBrains.Annotations/2020.1.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/JetBrains.Annotations.dll": { - "related": ".deps.json;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/JetBrains.Annotations.dll": { - "related": ".deps.json;.xml" - } - } - }, - "Microsoft.AspNetCore.Antiforgery/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.DataProtection": "2.2.0", - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.AspNetCore.WebUtilities": "2.2.0", - "Microsoft.Extensions.ObjectPool": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Authentication.Core/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Authorization/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Metadata": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0" - }, - "compile": { - "lib/net5.0/Microsoft.AspNetCore.Authorization.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Microsoft.AspNetCore.Authorization.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Authorization": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Cors/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.DataProtection/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Cryptography.Internal": "2.2.0", - "Microsoft.AspNetCore.DataProtection.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0", - "Microsoft.Win32.Registry": "4.5.0", - "System.Security.Cryptography.Xml": "4.5.0", - "System.Security.Principal.Windows": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Features": "2.2.0", - "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Html.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "System.Text.Encodings.Web": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Http/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.AspNetCore.WebUtilities": "2.2.0", - "Microsoft.Extensions.ObjectPool": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0", - "Microsoft.Net.Http.Headers": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Features": "2.2.0", - "System.Text.Encodings.Web": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Http.Extensions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", - "Microsoft.Net.Http.Headers": "2.2.0", - "System.Buffers": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Http.Features/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.JsonPatch/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.5.0", - "Newtonsoft.Json": "11.0.2" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Localization/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.Localization.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Metadata/5.0.0": { - "type": "package", - "compile": { - "lib/net5.0/Microsoft.AspNetCore.Metadata.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Microsoft.AspNetCore.Metadata.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Mvc/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Mvc.Analyzers": "2.2.0", - "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.2.0", - "Microsoft.AspNetCore.Mvc.Cors": "2.2.0", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.2.0", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.2.0", - "Microsoft.AspNetCore.Mvc.Localization": "2.2.0", - "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.2.0", - "Microsoft.AspNetCore.Mvc.RazorPages": "2.2.0", - "Microsoft.AspNetCore.Mvc.TagHelpers": "2.2.0", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.2.0", - "Microsoft.AspNetCore.Razor.Design": "2.2.0", - "Microsoft.Extensions.Caching.Memory": "2.2.0", - "Microsoft.Extensions.DependencyInjection": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", - "Microsoft.Net.Http.Headers": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Mvc.Analyzers/2.2.0": { - "type": "package" - }, - "Microsoft.AspNetCore.Mvc.ApiExplorer/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Mvc.Core": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Mvc.Core/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authentication.Core": "2.2.0", - "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0", - "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Routing": "2.2.0", - "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", - "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.Extensions.DependencyModel": "2.1.0", - "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "System.Diagnostics.DiagnosticSource": "4.5.0", - "System.Threading.Tasks.Extensions": "4.5.1" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Mvc.Cors/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Cors": "2.2.0", - "Microsoft.AspNetCore.Mvc.Core": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Mvc.DataAnnotations/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Mvc.Core": "2.2.0", - "Microsoft.Extensions.Localization": "2.2.0", - "System.ComponentModel.Annotations": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "2.2.0", - "Microsoft.AspNetCore.Mvc.Core": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Mvc.Localization/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Localization": "2.2.0", - "Microsoft.AspNetCore.Mvc.Razor": "2.2.0", - "Microsoft.Extensions.DependencyInjection": "2.2.0", - "Microsoft.Extensions.Localization": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Mvc.Razor/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.2.0", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.2.0", - "Microsoft.AspNetCore.Razor.Runtime": "2.2.0", - "Microsoft.CodeAnalysis.CSharp": "2.8.0", - "Microsoft.CodeAnalysis.Razor": "2.2.0", - "Microsoft.Extensions.Caching.Memory": "2.2.0", - "Microsoft.Extensions.FileProviders.Composite": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "2.2.0", - "Microsoft.CodeAnalysis.Razor": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": { - "related": ".xml" - } - }, - "build": { - "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.props": {}, - "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.targets": {} - } - }, - "Microsoft.AspNetCore.Mvc.RazorPages/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Mvc.Razor": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Mvc.TagHelpers/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Mvc.Razor": "2.2.0", - "Microsoft.AspNetCore.Razor.Runtime": "2.2.0", - "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", - "Microsoft.Extensions.Caching.Memory": "2.2.0", - "Microsoft.Extensions.FileSystemGlobbing": "2.2.0", - "Microsoft.Extensions.Primitives": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Mvc.ViewFeatures/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Antiforgery": "2.2.0", - "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Html.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Mvc.Core": "2.2.0", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.2.0", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.2.0", - "Microsoft.Extensions.WebEncoders": "2.2.0", - "Newtonsoft.Json.Bson": "1.0.1" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Razor/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Html.Abstractions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Razor.Design/2.2.0": { - "type": "package", - "build": { - "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.props": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.AspNetCore.Razor.Design.props": {} - } - }, - "Microsoft.AspNetCore.Razor.Language/2.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Razor.Runtime/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Html.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Razor": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Routing/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "2.2.0", - "Microsoft.Extensions.ObjectPool": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0" - }, - "compile": { - "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.WebUtilities/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Net.Http.Headers": "2.2.0", - "System.Text.Encodings.Web": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": { - "related": ".xml" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/1.1.0": { - "type": "package" - }, - "Microsoft.CodeAnalysis.Common/2.8.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Analyzers": "1.1.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Collections.Immutable": "1.3.1", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.FileVersionInfo": "4.3.0", - "System.Diagnostics.StackTrace": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Metadata": "1.4.2", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.CodePages": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Parallel": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.ValueTuple": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0", - "System.Xml.XPath.XDocument": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "compile": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/2.8.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Common": "[2.8.0]" - }, - "compile": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.CodeAnalysis.Razor/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "2.2.0", - "Microsoft.CodeAnalysis.CSharp": "2.8.0", - "Microsoft.CodeAnalysis.Common": "2.8.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { - "related": ".xml" - } - } - }, - "Microsoft.CSharp/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "Microsoft.DotNet.PlatformAbstractions/2.1.0": { - "type": "package", - "dependencies": { - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0" - }, - "compile": { - "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {} - } - }, - "Microsoft.EntityFrameworkCore/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0", - "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0", - "Microsoft.Extensions.Caching.Memory": "5.0.0", - "Microsoft.Extensions.DependencyInjection": "5.0.0", - "Microsoft.Extensions.Logging": "5.0.0", - "System.Collections.Immutable": "5.0.0", - "System.ComponentModel.Annotations": "5.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/_._": {} - } - }, - "Microsoft.EntityFrameworkCore.Relational/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Caching.Memory/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Configuration/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Configuration.CommandLine/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "5.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "5.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "5.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", - "Microsoft.Extensions.FileProviders.Physical": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Configuration.Json/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "5.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.Configuration.Json": "5.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", - "Microsoft.Extensions.FileProviders.Physical": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { - "related": ".xml" - } - }, - "build": { - "build/netstandard2.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" - }, - "compile": { - "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.DependencyModel/2.1.0": { - "type": "package", - "dependencies": { - "Microsoft.DotNet.PlatformAbstractions": "2.1.0", - "Newtonsoft.Json": "9.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Linq": "4.1.0" - }, - "compile": { - "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} - }, - "runtime": { - "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.FileProviders.Composite/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.FileProviders.Embedded/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0" - }, - "compile": { - "lib/net5.0/Microsoft.Extensions.FileProviders.Embedded.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.FileProviders.Embedded.dll": { - "related": ".xml" - } - }, - "build": { - "build/netstandard2.0/_._": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/_._": {} - } - }, - "Microsoft.Extensions.FileProviders.Physical/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.FileSystemGlobbing/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Hosting.Abstractions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Localization/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Localization.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0" - }, - "compile": { - "lib/net5.0/Microsoft.Extensions.Localization.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.Localization.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Localization.Abstractions/5.0.0": { - "type": "package", - "compile": { - "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Logging/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.ObjectPool/2.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Options/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/net5.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", - "Microsoft.Extensions.Configuration.Binder": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Primitives/5.0.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.WebEncoders/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "2.2.0", - "System.Text.Encodings.Web": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Net.Http.Headers/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "2.2.0", - "System.Buffers": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { - "related": ".xml" - } - } - }, - "Microsoft.NETCore.Platforms/2.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.OpenApi/1.2.3": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Win32.Registry/4.5.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "4.5.0", - "System.Security.Principal.Windows": "4.5.0" - }, - "compile": { - "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Microsoft.Win32.SystemEvents/4.5.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "2.0.0" - }, - "compile": { - "ref/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Newtonsoft.Json/12.0.3": { - "type": "package", - "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - } - }, - "Newtonsoft.Json.Bson/1.0.1": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1", - "Newtonsoft.Json": "10.0.1" - }, - "compile": { - "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": { - "related": ".xml" - } - } - }, - "Nito.AsyncEx.Context/5.0.0": { - "type": "package", - "dependencies": { - "Nito.AsyncEx.Tasks": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Nito.AsyncEx.Context.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Context.dll": { - "related": ".xml" - } - } - }, - "Nito.AsyncEx.Coordination/5.0.0": { - "type": "package", - "dependencies": { - "Nito.AsyncEx.Tasks": "5.0.0", - "Nito.Collections.Deque": "1.0.4", - "Nito.Disposables": "2.0.0" - }, - "compile": { - "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { - "related": ".xml" - } - } - }, - "Nito.AsyncEx.Tasks/5.0.0": { - "type": "package", - "dependencies": { - "Nito.Disposables": "2.0.0" - }, - "compile": { - "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { - "related": ".xml" - } - } - }, - "Nito.Collections.Deque/1.0.4": { - "type": "package", - "compile": { - "lib/netstandard2.0/Nito.Collections.Deque.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Nito.Collections.Deque.dll": { - "related": ".xml" - } - } - }, - "Nito.Disposables/2.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "1.4.0" - }, - "compile": { - "lib/netstandard2.0/Nito.Disposables.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Nito.Disposables.dll": { - "related": ".pdb;.xml" - } - } - }, - "NPOI/2.5.2": { - "type": "package", - "dependencies": { - "Portable.BouncyCastle": "1.8.6", - "SharpZipLib": "1.2.0", - "System.Configuration.ConfigurationManager": "4.5.0", - "System.Drawing.Common": "4.5.0" - }, - "compile": { - "lib/netstandard2.1/NPOI.OOXML.dll": { - "related": ".XML" - }, - "lib/netstandard2.1/NPOI.OpenXml4Net.dll": { - "related": ".XML" - }, - "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {}, - "lib/netstandard2.1/NPOI.dll": { - "related": ".OOXML.XML;.OpenXml4Net.XML;.XML" - } - }, - "runtime": { - "lib/netstandard2.1/NPOI.OOXML.dll": { - "related": ".XML" - }, - "lib/netstandard2.1/NPOI.OpenXml4Net.dll": { - "related": ".XML" - }, - "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {}, - "lib/netstandard2.1/NPOI.dll": { - "related": ".OOXML.XML;.OpenXml4Net.XML;.XML" - } - } - }, - "Portable.BouncyCastle/1.8.6": { - "type": "package", - "compile": { - "lib/netstandard2.0/BouncyCastle.Crypto.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/BouncyCastle.Crypto.dll": { - "related": ".xml" - } - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "debian.8-x64" - } - } - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "fedora.23-x64" - } - } - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "fedora.24-x64" - } - } - }, - "runtime.native.System/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "opensuse.13.2-x64" - } - } - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "opensuse.42.1-x64" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { - "assetType": "native", - "rid": "osx.10.10-x64" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { - "assetType": "native", - "rid": "osx.10.10-x64" - } - } - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "rhel.7-x64" - } - } - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.14.04-x64" - } - } - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.16.04-x64" - } - } - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.16.10-x64" - } - } - }, - "SharpZipLib/1.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": { - "related": ".pdb;.xml" - } - } - }, - "Swashbuckle.AspNetCore.Swagger/5.6.3": { - "type": "package", - "dependencies": { - "Microsoft.OpenApi": "1.2.3" - }, - "compile": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": { - "related": ".pdb;.xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": { - "type": "package", - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "5.6.3" - }, - "compile": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "related": ".pdb;.xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "System.AppContext/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.AppContext.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.AppContext.dll": {} - } - }, - "System.Buffers/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.dll": { - "related": ".xml" - } - } - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Concurrent.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Collections.Immutable.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": { - "related": ".xml" - } - } - }, - "System.ComponentModel.Annotations/5.0.0": { - "type": "package", - "compile": { - "ref/netstandard2.1/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } - } - }, - "System.Configuration.ConfigurationManager/4.5.0": { - "type": "package", - "dependencies": { - "System.Security.Cryptography.ProtectedData": "4.5.0", - "System.Security.Permissions": "4.5.0" - }, - "compile": { - "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} - } - }, - "System.Console/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.Debug.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "type": "package", - "compile": { - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.FileVersionInfo/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Reflection.Metadata": "1.4.1", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Diagnostics.StackTrace/4.3.0": { - "type": "package", - "dependencies": { - "System.IO.FileSystem": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Metadata": "1.4.1", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Diagnostics.Tools.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Diagnostics.Tracing.dll": { - "related": ".xml" - } - } - }, - "System.Drawing.Common/4.5.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "2.0.0", - "Microsoft.Win32.SystemEvents": "4.5.0" - }, - "compile": { - "ref/netstandard2.0/System.Drawing.Common.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Drawing.Common.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Dynamic.Runtime.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.dll": { - "related": ".xml" - } - } - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": { - "related": ".xml" - } - } - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": { - "related": ".xml" - } - } - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": { - "related": ".xml" - } - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.Linq/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Linq.Dynamic.Core/1.1.5": { - "type": "package", - "compile": { - "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": { - "related": ".pdb;.xml" - } - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Queryable/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Linq.Queryable.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Http.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Primitives.dll": { - "related": ".xml" - } - } - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": { - "related": ".xml" - } - } - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.ObjectModel.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} - } - }, - "System.Reflection/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Extensions.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.Metadata/1.4.2": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.Immutable": "1.3.1", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "lib/netstandard1.1/System.Reflection.Metadata.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.1/System.Reflection.Metadata.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Resources.ResourceManager.dll": { - "related": ".xml" - } - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Extensions.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Runtime.Loader/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Loader.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.Loader.dll": {} - } - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.Numerics.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Numerics.dll": {} - } - }, - "System.Security.AccessControl/4.5.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "2.0.0", - "System.Security.Principal.Windows": "4.5.0" - }, - "compile": { - "ref/netstandard2.0/System.Security.AccessControl.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.AccessControl.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtimeTargets": { - "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Cng/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtime": { - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { - "assetType": "runtime", - "rid": "unix" - } - } - }, - "System.Security.Cryptography.Pkcs/4.5.0": { - "type": "package", - "dependencies": { - "System.Security.Cryptography.Cng": "4.5.0" - }, - "compile": { - "ref/netcoreapp2.1/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.ProtectedData/4.5.0": { - "type": "package", - "compile": { - "ref/netstandard2.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Xml/4.5.0": { - "type": "package", - "dependencies": { - "System.Security.Cryptography.Pkcs": "4.5.0", - "System.Security.Permissions": "4.5.0" - }, - "compile": { - "ref/netstandard2.0/System.Security.Cryptography.Xml.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {} - } - }, - "System.Security.Permissions/4.5.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "4.5.0" - }, - "compile": { - "ref/netstandard2.0/System.Security.Permissions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.Permissions.dll": {} - } - }, - "System.Security.Principal.Windows/4.5.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "2.0.0" - }, - "compile": { - "ref/netstandard2.0/System.Security.Principal.Windows.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": { - "related": ".xml" - } - } - }, - "System.Text.Encoding.CodePages/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } - } - }, - "System.Text.Encodings.Web/4.5.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Text.Encodings.Web.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Text.Encodings.Web.dll": { - "related": ".xml" - } - } - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": {} - } - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": { - "related": ".xml" - } - } - }, - "System.Threading.Tasks.Extensions/4.5.1": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Threading.Tasks.Parallel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Thread/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Thread.dll": {} - } - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.2/System.Threading.Timer.dll": { - "related": ".xml" - } - } - }, - "System.ValueTuple/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/System.ValueTuple.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ValueTuple.dll": {} - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.ReaderWriter.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XDocument.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.dll": {} - } - }, - "System.Xml.XPath.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0", - "System.Xml.XPath": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {} - } - }, - "TimeZoneConverter/3.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/TimeZoneConverter.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/TimeZoneConverter.dll": { - "related": ".xml" - } - } - }, - "Volo.Abp.Auditing/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Data": "4.0.0", - "Volo.Abp.Json": "4.0.0", - "Volo.Abp.MultiTenancy": "4.0.0", - "Volo.Abp.Security": "4.0.0", - "Volo.Abp.Threading": "4.0.0", - "Volo.Abp.Timing": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Auditing.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Auditing.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Authorization/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authorization": "5.0.0", - "Volo.Abp.Localization.Abstractions": "4.0.0", - "Volo.Abp.MultiTenancy": "4.0.0", - "Volo.Abp.Security": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Authorization.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Authorization.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Caching/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Memory": "5.0.0", - "Volo.Abp.Json": "4.0.0", - "Volo.Abp.MultiTenancy": "4.0.0", - "Volo.Abp.Serialization": "4.0.0", - "Volo.Abp.Threading": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Caching.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Caching.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Core/4.0.0": { - "type": "package", - "dependencies": { - "JetBrains.Annotations": "2020.1.0", - "Microsoft.Extensions.Configuration.CommandLine": "5.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0", - "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0", - "Microsoft.Extensions.DependencyInjection": "5.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "5.0.0", - "Microsoft.Extensions.Localization": "5.0.0", - "Microsoft.Extensions.Logging": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0", - "Nito.AsyncEx.Context": "5.0.0", - "Nito.AsyncEx.Coordination": "5.0.0", - "System.Collections.Immutable": "1.7.1", - "System.ComponentModel.Annotations": "4.7.0", - "System.Linq.Dynamic.Core": "1.1.5", - "System.Linq.Queryable": "4.3.0", - "System.Runtime.Loader": "4.3.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Core.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Core.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Data/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Core": "4.0.0", - "Volo.Abp.ObjectExtending": "4.0.0", - "Volo.Abp.Uow": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Data.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Data.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Ddd.Application/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Authorization": "4.0.0", - "Volo.Abp.Ddd.Application.Contracts": "4.0.0", - "Volo.Abp.Ddd.Domain": "4.0.0", - "Volo.Abp.Features": "4.0.0", - "Volo.Abp.Http.Abstractions": "4.0.0", - "Volo.Abp.Localization": "4.0.0", - "Volo.Abp.ObjectMapping": "4.0.0", - "Volo.Abp.Security": "4.0.0", - "Volo.Abp.Settings": "4.0.0", - "Volo.Abp.Validation": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Ddd.Application.Contracts/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Auditing": "4.0.0", - "Volo.Abp.Localization": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Ddd.Domain/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Auditing": "4.0.0", - "Volo.Abp.Data": "4.0.0", - "Volo.Abp.EventBus": "4.0.0", - "Volo.Abp.ExceptionHandling": "4.0.0", - "Volo.Abp.Guids": "4.0.0", - "Volo.Abp.MultiTenancy": "4.0.0", - "Volo.Abp.ObjectMapping": "4.0.0", - "Volo.Abp.Specifications": "4.0.0", - "Volo.Abp.Threading": "4.0.0", - "Volo.Abp.Timing": "4.0.0", - "Volo.Abp.Uow": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.EntityFrameworkCore/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.0", - "Microsoft.EntityFrameworkCore.Relational": "5.0.0", - "Volo.Abp.Ddd.Domain": "4.0.0", - "Volo.Abp.Json": "4.0.0" - }, - "compile": { - "lib/netstandard2.1/Volo.Abp.EntityFrameworkCore.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.1/Volo.Abp.EntityFrameworkCore.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.EventBus/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Core": "4.0.0", - "Volo.Abp.MultiTenancy": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.EventBus.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.EventBus.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.ExceptionHandling/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.FileProviders.Embedded": "5.0.0", - "Volo.Abp.Localization": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Features/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Localization.Abstractions": "4.0.0", - "Volo.Abp.MultiTenancy": "4.0.0", - "Volo.Abp.Validation": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Features.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Features.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Guids/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Core": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Guids.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Guids.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Http.Abstractions/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Core": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Json/4.0.0": { - "type": "package", - "dependencies": { - "Newtonsoft.Json": "12.0.3", - "Volo.Abp.ObjectExtending": "4.0.0", - "Volo.Abp.Timing": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Json.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Json.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Localization/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Localization.Abstractions": "4.0.0", - "Volo.Abp.Settings": "4.0.0", - "Volo.Abp.VirtualFileSystem": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Localization.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Localization.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Localization.Abstractions/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Core": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.MultiTenancy/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Data": "4.0.0", - "Volo.Abp.Security": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.ObjectExtending/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Localization.Abstractions": "4.0.0", - "Volo.Abp.Validation.Abstractions": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.ObjectMapping/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Core": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Security/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Core": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Security.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Security.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Serialization/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Core": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Serialization.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Serialization.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Settings/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Localization.Abstractions": "4.0.0", - "Volo.Abp.MultiTenancy": "4.0.0", - "Volo.Abp.Security": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Settings.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Settings.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Specifications/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Core": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Specifications.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Specifications.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Threading/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Core": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Threading.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Threading.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Timing/4.0.0": { - "type": "package", - "dependencies": { - "TimeZoneConverter": "3.2.0", - "Volo.Abp.Core": "4.0.0", - "Volo.Abp.Localization": "4.0.0", - "Volo.Abp.Settings": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Timing.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Timing.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Uow/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Core": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Uow.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Uow.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Validation/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Localization": "4.0.0", - "Volo.Abp.Validation.Abstractions": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Validation.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Validation.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.Validation.Abstractions/4.0.0": { - "type": "package", - "dependencies": { - "Volo.Abp.Core": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": { - "related": ".pdb;.xml" - } - } - }, - "Volo.Abp.VirtualFileSystem/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.FileProviders.Composite": "5.0.0", - "Microsoft.Extensions.FileProviders.Embedded": "5.0.0", - "Microsoft.Extensions.FileProviders.Physical": "5.0.0", - "Volo.Abp.Core": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": { - "related": ".pdb;.xml" - } - } - }, - "Win.Utils/2.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v5.0", - "dependencies": { - "NPOI": "2.5.2", - "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3" - }, - "compile": { - "bin/placeholder/Win.Utils.dll": {} - }, - "runtime": { - "bin/placeholder/Win.Utils.dll": {} - } - } - } - }, - "libraries": { - "JetBrains.Annotations/2020.1.0": { - "sha512": "kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==", - "type": "package", - "path": "jetbrains.annotations/2020.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "icon.png", - "jetbrains.annotations.2020.1.0.nupkg.sha512", - "jetbrains.annotations.nuspec", - "lib/net20/JetBrains.Annotations.dll", - "lib/net20/JetBrains.Annotations.xml", - "lib/netstandard1.0/JetBrains.Annotations.deps.json", - "lib/netstandard1.0/JetBrains.Annotations.dll", - "lib/netstandard1.0/JetBrains.Annotations.xml", - "lib/netstandard2.0/JetBrains.Annotations.deps.json", - "lib/netstandard2.0/JetBrains.Annotations.dll", - "lib/netstandard2.0/JetBrains.Annotations.xml", - "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.dll", - "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml" - ] - }, - "Microsoft.AspNetCore.Antiforgery/2.2.0": { - "sha512": "fVQsSXNZz38Ysx8iKwwqfOLHhLrAeKEMBS5Ia3Lh7BJjOC2vPV28/yk08AovOMsB3SNQPGnE7bv+lsIBTmAkvw==", - "type": "package", - "path": "microsoft.aspnetcore.antiforgery/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.xml", - "microsoft.aspnetcore.antiforgery.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.antiforgery.nuspec" - ] - }, - "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { - "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", - "type": "package", - "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml", - "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.authentication.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.Authentication.Core/2.2.0": { - "sha512": "XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", - "type": "package", - "path": "microsoft.aspnetcore.authentication.core/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.xml", - "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.authentication.core.nuspec" - ] - }, - "Microsoft.AspNetCore.Authorization/5.0.0": { - "sha512": "kNiUekkQZIgd0k8WJZVLpdaJSTgpwHT+gn9slPtON4FC8vGGsFWQo3Bd5wo363EJuxlOgszUNQBbpLAaFh1kFg==", - "type": "package", - "path": "microsoft.aspnetcore.authorization/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.AspNetCore.Authorization.dll", - "lib/net461/Microsoft.AspNetCore.Authorization.xml", - "lib/net5.0/Microsoft.AspNetCore.Authorization.dll", - "lib/net5.0/Microsoft.AspNetCore.Authorization.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", - "microsoft.aspnetcore.authorization.5.0.0.nupkg.sha512", - "microsoft.aspnetcore.authorization.nuspec" - ] - }, - "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { - "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", - "type": "package", - "path": "microsoft.aspnetcore.authorization.policy/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml", - "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.authorization.policy.nuspec" - ] - }, - "Microsoft.AspNetCore.Cors/2.2.0": { - "sha512": "LFlTM3ThS3ZCILuKnjy8HyK9/IlDh3opogdbCVx6tMGyDzTQBgMPXLjGDLtMk5QmLDCcP3l1TO3z/+1viA8GUg==", - "type": "package", - "path": "microsoft.aspnetcore.cors/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Cors.xml", - "microsoft.aspnetcore.cors.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.cors.nuspec" - ] - }, - "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": { - "sha512": "GXmMD8/vuTLPLvKzKEPz/4vapC5e0cwx1tUVd83ePRyWF9CCrn/pg4/1I+tGkQqFLPvi3nlI2QtPtC6MQN8Nww==", - "type": "package", - "path": "microsoft.aspnetcore.cryptography.internal/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml", - "microsoft.aspnetcore.cryptography.internal.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.cryptography.internal.nuspec" - ] - }, - "Microsoft.AspNetCore.DataProtection/2.2.0": { - "sha512": "G6dvu5Nd2vjpYbzazZ//qBFbSEf2wmBUbyAR7E4AwO3gWjhoJD5YxpThcGJb7oE3VUcW65SVMXT+cPCiiBg8Sg==", - "type": "package", - "path": "microsoft.aspnetcore.dataprotection/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml", - "microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.dataprotection.nuspec" - ] - }, - "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": { - "sha512": "seANFXmp8mb5Y12m1ShiElJ3ZdOT3mBN3wA1GPhHJIvZ/BxOCPyqEOR+810OWsxEZwA5r5fDRNpG/CqiJmQnJg==", - "type": "package", - "path": "microsoft.aspnetcore.dataprotection.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml", - "microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.dataprotection.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": { - "sha512": "pva9ggfUDtnJIKzv0+wxwTX7LduDx6xLSpMqWwdOJkW52L0t31PI78+v+WqqMpUtMzcKug24jGs3nTFpAmA/2g==", - "type": "package", - "path": "microsoft.aspnetcore.diagnostics.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml", - "microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.diagnostics.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { - "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", - "type": "package", - "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml", - "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.hosting.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { - "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", - "type": "package", - "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", - "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.hosting.server.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.Html.Abstractions/2.2.0": { - "sha512": "Y4rs5aMEXY8G7wJo5S3EEt6ltqyOTr/qOeZzfn+hw/fuQj5GppGckMY5psGLETo1U9hcT5MmAhaT5xtusM1b5g==", - "type": "package", - "path": "microsoft.aspnetcore.html.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.xml", - "microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.html.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.Http/2.2.0": { - "sha512": "YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==", - "type": "package", - "path": "microsoft.aspnetcore.http/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml", - "microsoft.aspnetcore.http.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.http.nuspec" - ] - }, - "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { - "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", - "type": "package", - "path": "microsoft.aspnetcore.http.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml", - "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.http.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.Http.Extensions/2.2.0": { - "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", - "type": "package", - "path": "microsoft.aspnetcore.http.extensions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml", - "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.http.extensions.nuspec" - ] - }, - "Microsoft.AspNetCore.Http.Features/2.2.0": { - "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", - "type": "package", - "path": "microsoft.aspnetcore.http.features/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", - "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.http.features.nuspec" - ] - }, - "Microsoft.AspNetCore.JsonPatch/2.2.0": { - "sha512": "o9BB9hftnCsyJalz9IT0DUFxz8Xvgh3TOfGWolpuf19duxB4FySq7c25XDYBmBMS+sun5/PsEUAi58ra4iJAoA==", - "type": "package", - "path": "microsoft.aspnetcore.jsonpatch/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml", - "microsoft.aspnetcore.jsonpatch.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.jsonpatch.nuspec" - ] - }, - "Microsoft.AspNetCore.Localization/2.2.0": { - "sha512": "+PGX1mEfq19EVvskBBb9XBQrXZpZrh6hYhX0x3FkPTEqr+rDM2ZmsEwAAMRmzcidmlDM1/7cyDSU/WhkecU8tA==", - "type": "package", - "path": "microsoft.aspnetcore.localization/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Localization.xml", - "microsoft.aspnetcore.localization.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.localization.nuspec" - ] - }, - "Microsoft.AspNetCore.Metadata/5.0.0": { - "sha512": "Gr7YSfoYYnyiQ3+se9RjiZhj2h7I9uDn0ps1kPfxGqLbC8fzpfAzb3EPbHz0sBHtw8aBE0zyckZixmAMqHJnpA==", - "type": "package", - "path": "microsoft.aspnetcore.metadata/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.AspNetCore.Metadata.dll", - "lib/net461/Microsoft.AspNetCore.Metadata.xml", - "lib/net5.0/Microsoft.AspNetCore.Metadata.dll", - "lib/net5.0/Microsoft.AspNetCore.Metadata.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", - "microsoft.aspnetcore.metadata.5.0.0.nupkg.sha512", - "microsoft.aspnetcore.metadata.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc/2.2.0": { - "sha512": "noun9xcrEvOs/ubczt2OluY9/bOOM2erv1D/gyyYtfS2sfyx2uGknUIAWoqmqc401TvQDysyx8S4M9j5zPIVBw==", - "type": "package", - "path": "microsoft.aspnetcore.mvc/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.xml", - "microsoft.aspnetcore.mvc.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { - "sha512": "ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.xml", - "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.Analyzers/2.2.0": { - "sha512": "Wxxt1rFVHITp4MDaGQP/wyl+ROVVVeQCTWI6C8hxI8X66C4u6gcxvelqgnmsn+dISMCdE/7FQOwgiMx1HxuZqA==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.analyzers/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "analyzers/dotnet/cs/Microsoft.AspNetCore.Mvc.Analyzers.dll", - "microsoft.aspnetcore.mvc.analyzers.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.analyzers.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.ApiExplorer/2.2.0": { - "sha512": "iSREQct43Xg2t3KiQ2648e064al/HSLPXpI5yO9VPeTGDspWKHW23XFHRKPN1YjIQHHfBj8ytXbiF0XcSxp5pg==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.apiexplorer/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.xml", - "microsoft.aspnetcore.mvc.apiexplorer.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.apiexplorer.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.Core/2.2.0": { - "sha512": "ALiY4a6BYsghw8PT5+VU593Kqp911U3w9f/dH9/ZoI3ezDsDAGiObqPu/HP1oXK80Ceu0XdQ3F0bx5AXBeuN/Q==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.core/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.xml", - "microsoft.aspnetcore.mvc.core.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.core.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.Cors/2.2.0": { - "sha512": "oINjMqhU7yzT2T9AMuvktlWlMd40i0do8E1aYslJS+c5fof+EMhjnwTh6cHN1dfrgjkoXJ/gutxn5Qaqf/81Kg==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.cors/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.xml", - "microsoft.aspnetcore.mvc.cors.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.cors.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.DataAnnotations/2.2.0": { - "sha512": "WOw4SA3oT47aiU7ZjN/88j+b79YU6VftmHmxK29Km3PTI7WZdmw675QTcgWfsjEX4joCB82v7TvarO3D0oqOyw==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.dataannotations/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.xml", - "microsoft.aspnetcore.mvc.dataannotations.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.dataannotations.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": { - "sha512": "ScWwXrkAvw6PekWUFkIr5qa9NKn4uZGRvxtt3DvtUrBYW5Iu2y4SS/vx79JN0XDHNYgAJ81nVs+4M7UE1Y/O+g==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.formatters.json/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.xml", - "microsoft.aspnetcore.mvc.formatters.json.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.formatters.json.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.Localization/2.2.0": { - "sha512": "H1L4pP124mrN6duwOtNVIJUqy4CczC2/ah4MXarRt9ZRpJd2zNp1j3tJCgyEQpqai6zNVP6Vp2ZRMQcNDcNAKA==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.localization/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.xml", - "microsoft.aspnetcore.mvc.localization.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.localization.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.Razor/2.2.0": { - "sha512": "TXvEOjp3r6qDEjmDtv3pXjQr/Zia9PpoGkl1MyTEqKqrUehBTpAdCjA8APXFwun19lH20OuyU+e4zDYv9g134w==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.razor/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.xml", - "microsoft.aspnetcore.mvc.razor.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.razor.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.2.0": { - "sha512": "Sei/0moqBDQKaAYT9PtOeRtvYgHQQLyw/jm3exHw2w9VdzejiMEqCQrN2d63Dk4y7IY0Irr/P9JUFkoVURRcNw==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.razor.extensions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.props", - "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.targets", - "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll", - "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml", - "microsoft.aspnetcore.mvc.razor.extensions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.razor.extensions.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.RazorPages/2.2.0": { - "sha512": "GsMs4QKCf5VgdGZq9/nfAVkMJ/8uE4ie0Iugv4FtxbHBmMdpPQQBfTFKoUpwMbgIRw7hzV8xy2HPPU5o58PsdQ==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.razorpages/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.xml", - "microsoft.aspnetcore.mvc.razorpages.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.razorpages.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.TagHelpers/2.2.0": { - "sha512": "hsrm/dLx7ztfWV+WEE7O8YqEePW7TmUwFwR7JsOUSTKaV9uSeghdmoOsYuk0HeoTiMhRxH8InQVE9/BgBj+jog==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.taghelpers/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.xml", - "microsoft.aspnetcore.mvc.taghelpers.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.taghelpers.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.ViewFeatures/2.2.0": { - "sha512": "dt7MGkzCFVTAD5oesI8UeVVeiSgaZ0tPdFstQjG6YLJSCiq1koOUSHMpf0PASGdOW/H9hxXkolIBhT5dWqJi7g==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.viewfeatures/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.xml", - "microsoft.aspnetcore.mvc.viewfeatures.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.mvc.viewfeatures.nuspec" - ] - }, - "Microsoft.AspNetCore.Razor/2.2.0": { - "sha512": "V54PIyDCFl8COnTp9gezNHpUNHk7F9UnerGeZy3UfbnwYvfzbo+ipqQmSgeoESH8e0JvKhRTyQyZquW2EPtCmg==", - "type": "package", - "path": "microsoft.aspnetcore.razor/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.xml", - "microsoft.aspnetcore.razor.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.razor.nuspec" - ] - }, - "Microsoft.AspNetCore.Razor.Design/2.2.0": { - "sha512": "VLWK+ZtMMNukY6XjxYHc7mz33vkquoEzQJHm/LCF5REVxIaexLr+UTImljRRJBdUDJluDAQwU+59IX0rFDfURA==", - "type": "package", - "path": "microsoft.aspnetcore.razor.design/2.2.0", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.CodeGeneration.targets", - "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.props", - "buildMultiTargeting/Microsoft.AspNetCore.Razor.Design.props", - "microsoft.aspnetcore.razor.design.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.razor.design.nuspec", - "tools/Microsoft.AspNetCore.Razor.Language.dll", - "tools/Microsoft.CodeAnalysis.CSharp.dll", - "tools/Microsoft.CodeAnalysis.Razor.dll", - "tools/Microsoft.CodeAnalysis.dll", - "tools/Newtonsoft.Json.dll", - "tools/runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "tools/runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "tools/rzc.deps.json", - "tools/rzc.dll", - "tools/rzc.runtimeconfig.json" - ] - }, - "Microsoft.AspNetCore.Razor.Language/2.2.0": { - "sha512": "IeyzVFXZdpUAnWKWoNYE0SsP1Eu7JLjZaC94jaI1VfGtK57QykROz/iGMc8D0VcqC8i02qYTPQN/wPKm6PfidA==", - "type": "package", - "path": "microsoft.aspnetcore.razor.language/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net46/Microsoft.AspNetCore.Razor.Language.dll", - "lib/net46/Microsoft.AspNetCore.Razor.Language.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.xml", - "microsoft.aspnetcore.razor.language.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.razor.language.nuspec" - ] - }, - "Microsoft.AspNetCore.Razor.Runtime/2.2.0": { - "sha512": "7YqK+H61lN6yj9RiQUko7oaOhKtRR9Q/kBcoWNRemhJdTIWOh1OmdvJKzZrMWOlff3BAjejkPQm+0V0qXk+B1w==", - "type": "package", - "path": "microsoft.aspnetcore.razor.runtime/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.xml", - "microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.razor.runtime.nuspec" - ] - }, - "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { - "sha512": "CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==", - "type": "package", - "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml", - "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.responsecaching.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.Routing/2.2.0": { - "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", - "type": "package", - "path": "microsoft.aspnetcore.routing/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll", - "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml", - "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.routing.nuspec" - ] - }, - "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { - "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", - "type": "package", - "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml", - "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.routing.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.WebUtilities/2.2.0": { - "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", - "type": "package", - "path": "microsoft.aspnetcore.webutilities/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml", - "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", - "microsoft.aspnetcore.webutilities.nuspec" - ] - }, - "Microsoft.CodeAnalysis.Analyzers/1.1.0": { - "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", - "type": "package", - "path": "microsoft.codeanalysis.analyzers/1.1.0", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.rtf", - "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", - "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", - "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", - "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", - "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512", - "microsoft.codeanalysis.analyzers.nuspec", - "tools/install.ps1", - "tools/uninstall.ps1" - ] - }, - "Microsoft.CodeAnalysis.Common/2.8.0": { - "sha512": "06AzG7oOLKTCN1EnoVYL1bQz+Zwa10LMpUn7Kc+PdpN8CQXRqXTyhfxuKIz6t0qWfoatBNXdHD0OLcEYp5pOvQ==", - "type": "package", - "path": "microsoft.codeanalysis.common/2.8.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.3/Microsoft.CodeAnalysis.dll", - "lib/netstandard1.3/Microsoft.CodeAnalysis.pdb", - "lib/netstandard1.3/Microsoft.CodeAnalysis.xml", - "microsoft.codeanalysis.common.2.8.0.nupkg.sha512", - "microsoft.codeanalysis.common.nuspec" - ] - }, - "Microsoft.CodeAnalysis.CSharp/2.8.0": { - "sha512": "RizcFXuHgGmeuZhxxE1qQdhFA9lGOHlk0MJlCUt6LOnYsevo72gNikPcbANFHY02YK8L/buNrihchY0TroGvXQ==", - "type": "package", - "path": "microsoft.codeanalysis.csharp/2.8.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll", - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.pdb", - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml", - "microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512", - "microsoft.codeanalysis.csharp.nuspec" - ] - }, - "Microsoft.CodeAnalysis.Razor/2.2.0": { - "sha512": "2qL0Qyu5qHzg6/JzF80mLgsqn9NP/Q0mQwjH+Z+DiqcuODJx8segjN4un2Tnz6bEAWv8FCRFNXR/s5wzlxqA8A==", - "type": "package", - "path": "microsoft.codeanalysis.razor/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net46/Microsoft.CodeAnalysis.Razor.dll", - "lib/net46/Microsoft.CodeAnalysis.Razor.xml", - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.xml", - "microsoft.codeanalysis.razor.2.2.0.nupkg.sha512", - "microsoft.codeanalysis.razor.nuspec" - ] - }, - "Microsoft.CSharp/4.5.0": { - "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", - "type": "package", - "path": "microsoft.csharp/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.3/Microsoft.CSharp.dll", - "lib/netstandard2.0/Microsoft.CSharp.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/uap10.0.16299/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.csharp.4.5.0.nupkg.sha512", - "microsoft.csharp.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/Microsoft.CSharp.dll", - "ref/netcore50/Microsoft.CSharp.xml", - "ref/netcore50/de/Microsoft.CSharp.xml", - "ref/netcore50/es/Microsoft.CSharp.xml", - "ref/netcore50/fr/Microsoft.CSharp.xml", - "ref/netcore50/it/Microsoft.CSharp.xml", - "ref/netcore50/ja/Microsoft.CSharp.xml", - "ref/netcore50/ko/Microsoft.CSharp.xml", - "ref/netcore50/ru/Microsoft.CSharp.xml", - "ref/netcore50/zh-hans/Microsoft.CSharp.xml", - "ref/netcore50/zh-hant/Microsoft.CSharp.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.0/Microsoft.CSharp.dll", - "ref/netstandard1.0/Microsoft.CSharp.xml", - "ref/netstandard1.0/de/Microsoft.CSharp.xml", - "ref/netstandard1.0/es/Microsoft.CSharp.xml", - "ref/netstandard1.0/fr/Microsoft.CSharp.xml", - "ref/netstandard1.0/it/Microsoft.CSharp.xml", - "ref/netstandard1.0/ja/Microsoft.CSharp.xml", - "ref/netstandard1.0/ko/Microsoft.CSharp.xml", - "ref/netstandard1.0/ru/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", - "ref/netstandard2.0/Microsoft.CSharp.dll", - "ref/netstandard2.0/Microsoft.CSharp.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/uap10.0.16299/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.DotNet.PlatformAbstractions/2.1.0": { - "sha512": "9KPDwvb/hLEVXYruVHVZ8BkebC8j17DmPb56LnqRF74HqSPLjCkrlFUjOtFpQPA2DeADBRTI/e69aCfRBfrhxw==", - "type": "package", - "path": "microsoft.dotnet.platformabstractions/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll", - "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll", - "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512", - "microsoft.dotnet.platformabstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore/5.0.0": { - "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==", - "type": "package", - "path": "microsoft.entityframeworkcore/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.5.0.0.nupkg.sha512", - "microsoft.entityframeworkcore.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": { - "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==", - "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512", - "microsoft.entityframeworkcore.abstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": { - "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==", - "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", - "lib/netstandard2.0/_._", - "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512", - "microsoft.entityframeworkcore.analyzers.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Relational/5.0.0": { - "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==", - "type": "package", - "path": "microsoft.entityframeworkcore.relational/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512", - "microsoft.entityframeworkcore.relational.nuspec" - ] - }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0": { - "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==", - "type": "package", - "path": "microsoft.extensions.caching.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", - "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.caching.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Caching.Memory/5.0.0": { - "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==", - "type": "package", - "path": "microsoft.extensions.caching.memory/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Caching.Memory.dll", - "lib/net461/Microsoft.Extensions.Caching.Memory.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", - "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", - "microsoft.extensions.caching.memory.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration/5.0.0": { - "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==", - "type": "package", - "path": "microsoft.extensions.configuration/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.dll", - "lib/net461/Microsoft.Extensions.Configuration.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", - "microsoft.extensions.configuration.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration.Binder/5.0.0": { - "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==", - "type": "package", - "path": "microsoft.extensions.configuration.binder/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net461/Microsoft.Extensions.Configuration.Binder.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", - "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.binder.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration.CommandLine/5.0.0": { - "sha512": "OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==", - "type": "package", - "path": "microsoft.extensions.configuration.commandline/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll", - "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml", - "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.commandline.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": { - "sha512": "fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==", - "type": "package", - "path": "microsoft.extensions.configuration.environmentvariables/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", - "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", - "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.environmentvariables.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": { - "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==", - "type": "package", - "path": "microsoft.extensions.configuration.fileextensions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll", - "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", - "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.fileextensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration.Json/5.0.0": { - "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==", - "type": "package", - "path": "microsoft.extensions.configuration.json/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.Json.dll", - "lib/net461/Microsoft.Extensions.Configuration.Json.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", - "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.json.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": { - "sha512": "+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==", - "type": "package", - "path": "microsoft.extensions.configuration.usersecrets/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props", - "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", - "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll", - "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml", - "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.usersecrets.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection/5.0.0": { - "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.DependencyInjection.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.xml", - "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { - "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.DependencyModel/2.1.0": { - "sha512": "nS2XKqi+1A1umnYNLX2Fbm/XnzCxs5i+zXVJ3VC6r9t2z0NZr9FLnJN4VQpKigdcWH/iFTbMuX6M6WQJcTjVIg==", - "type": "package", - "path": "microsoft.extensions.dependencymodel/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net451/Microsoft.Extensions.DependencyModel.dll", - "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", - "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", - "microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512", - "microsoft.extensions.dependencymodel.nuspec" - ] - }, - "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": { - "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==", - "type": "package", - "path": "microsoft.extensions.fileproviders.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll", - "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", - "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.fileproviders.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.FileProviders.Composite/5.0.0": { - "sha512": "0IoXXfkgKpYJB1t2lC0jPXAxuaywRNc9y2Mq96ZZNKBthL38vusa2UK73+Bm6Kq/9a5xNHJS6NhsSN+i5TEtkA==", - "type": "package", - "path": "microsoft.extensions.fileproviders.composite/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.FileProviders.Composite.dll", - "lib/net461/Microsoft.Extensions.FileProviders.Composite.xml", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml", - "microsoft.extensions.fileproviders.composite.5.0.0.nupkg.sha512", - "microsoft.extensions.fileproviders.composite.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.FileProviders.Embedded/5.0.0": { - "sha512": "2Of7fsjZi1UilxtZMHKchQqdzXxwAxjGhRvmQI1ih5+Oq+xWVHlNrJdIXMYf7u0Z7aVlHZfKOH8sNGfyH4ZRNw==", - "type": "package", - "path": "microsoft.extensions.fileproviders.embedded/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.props", - "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.targets", - "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.props", - "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.targets", - "lib/net461/Microsoft.Extensions.FileProviders.Embedded.dll", - "lib/net461/Microsoft.Extensions.FileProviders.Embedded.xml", - "lib/net5.0/Microsoft.Extensions.FileProviders.Embedded.dll", - "lib/net5.0/Microsoft.Extensions.FileProviders.Embedded.xml", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.xml", - "microsoft.extensions.fileproviders.embedded.5.0.0.nupkg.sha512", - "microsoft.extensions.fileproviders.embedded.nuspec", - "tasks/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll" - ] - }, - "Microsoft.Extensions.FileProviders.Physical/5.0.0": { - "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==", - "type": "package", - "path": "microsoft.extensions.fileproviders.physical/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll", - "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", - "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512", - "microsoft.extensions.fileproviders.physical.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.FileSystemGlobbing/5.0.0": { - "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==", - "type": "package", - "path": "microsoft.extensions.filesystemglobbing/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll", - "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml", - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", - "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512", - "microsoft.extensions.filesystemglobbing.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Hosting.Abstractions/5.0.0": { - "sha512": "cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==", - "type": "package", - "path": "microsoft.extensions.hosting.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", - "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.hosting.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Localization/5.0.0": { - "sha512": "PJ2TouziI0zcgiq2VapjNFkMsT05rZUfq0i6sY+59Ri6Mn9W7okJ1U5/CvetFDUAN0DHrXOTaaMSt5epUn6rQQ==", - "type": "package", - "path": "microsoft.extensions.localization/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Localization.dll", - "lib/net461/Microsoft.Extensions.Localization.xml", - "lib/net5.0/Microsoft.Extensions.Localization.dll", - "lib/net5.0/Microsoft.Extensions.Localization.xml", - "lib/netstandard2.0/Microsoft.Extensions.Localization.dll", - "lib/netstandard2.0/Microsoft.Extensions.Localization.xml", - "microsoft.extensions.localization.5.0.0.nupkg.sha512", - "microsoft.extensions.localization.nuspec" - ] - }, - "Microsoft.Extensions.Localization.Abstractions/5.0.0": { - "sha512": "Uey8VI3FbPFLiLh+mnFN13DTbQASSuzV3ZeN9Oma2Y4YW7OBWjU9LAsvPISRBQHrwztXegSoCacFWqB9o992xQ==", - "type": "package", - "path": "microsoft.extensions.localization.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Localization.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Localization.Abstractions.xml", - "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll", - "lib/net5.0/Microsoft.Extensions.Localization.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml", - "microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.localization.abstractions.nuspec" - ] - }, - "Microsoft.Extensions.Logging/5.0.0": { - "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", - "type": "package", - "path": "microsoft.extensions.logging/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.dll", - "lib/net461/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.5.0.0.nupkg.sha512", - "microsoft.extensions.logging.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.ObjectPool/2.2.0": { - "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", - "type": "package", - "path": "microsoft.extensions.objectpool/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", - "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", - "microsoft.extensions.objectpool.2.2.0.nupkg.sha512", - "microsoft.extensions.objectpool.nuspec" - ] - }, - "Microsoft.Extensions.Options/5.0.0": { - "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", - "type": "package", - "path": "microsoft.extensions.options/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Options.dll", - "lib/net461/Microsoft.Extensions.Options.xml", - "lib/net5.0/Microsoft.Extensions.Options.dll", - "lib/net5.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.5.0.0.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": { - "sha512": "280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==", - "type": "package", - "path": "microsoft.extensions.options.configurationextensions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512", - "microsoft.extensions.options.configurationextensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Primitives/5.0.0": { - "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", - "type": "package", - "path": "microsoft.extensions.primitives/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Primitives.dll", - "lib/net461/Microsoft.Extensions.Primitives.xml", - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll", - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.5.0.0.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.WebEncoders/2.2.0": { - "sha512": "V8XcqYcpcdBAxUhLeyYcuKmxu4CtNQA9IphTnARpQGhkop4A93v2XgM3AtaVVJo3H2cDWxWM6aeO8HxkifREqw==", - "type": "package", - "path": "microsoft.extensions.webencoders/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll", - "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.xml", - "microsoft.extensions.webencoders.2.2.0.nupkg.sha512", - "microsoft.extensions.webencoders.nuspec" - ] - }, - "Microsoft.Net.Http.Headers/2.2.0": { - "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", - "type": "package", - "path": "microsoft.net.http.headers/2.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll", - "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml", - "microsoft.net.http.headers.2.2.0.nupkg.sha512", - "microsoft.net.http.headers.nuspec" - ] - }, - "Microsoft.NETCore.Platforms/2.0.0": { - "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", - "type": "package", - "path": "microsoft.netcore.platforms/2.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.2.0.0.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.NETCore.Targets/1.1.0": { - "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "type": "package", - "path": "microsoft.netcore.targets/1.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "microsoft.netcore.targets.1.1.0.nupkg.sha512", - "microsoft.netcore.targets.nuspec", - "runtime.json" - ] - }, - "Microsoft.OpenApi/1.2.3": { - "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", - "type": "package", - "path": "microsoft.openapi/1.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net46/Microsoft.OpenApi.dll", - "lib/net46/Microsoft.OpenApi.pdb", - "lib/net46/Microsoft.OpenApi.xml", - "lib/netstandard2.0/Microsoft.OpenApi.dll", - "lib/netstandard2.0/Microsoft.OpenApi.pdb", - "lib/netstandard2.0/Microsoft.OpenApi.xml", - "microsoft.openapi.1.2.3.nupkg.sha512", - "microsoft.openapi.nuspec" - ] - }, - "Microsoft.Win32.Primitives/4.3.0": { - "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "type": "package", - "path": "microsoft.win32.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.win32.primitives.4.3.0.nupkg.sha512", - "microsoft.win32.primitives.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "Microsoft.Win32.Registry/4.5.0": { - "sha512": "+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==", - "type": "package", - "path": "microsoft.win32.registry/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.dll", - "lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "microsoft.win32.registry.4.5.0.nupkg.sha512", - "microsoft.win32.registry.nuspec", - "ref/net46/Microsoft.Win32.Registry.dll", - "ref/net461/Microsoft.Win32.Registry.dll", - "ref/net461/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/Microsoft.Win32.Registry.dll", - "ref/netstandard1.3/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", - "ref/netstandard2.0/Microsoft.Win32.Registry.dll", - "ref/netstandard2.0/Microsoft.Win32.Registry.xml", - "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Win32.SystemEvents/4.5.0": { - "sha512": "LuI1oG+24TUj1ZRQQjM5Ew73BKnZE5NZ/7eAdh1o8ST5dPhUnJvIkiIn2re3MwnkRy6ELRnvEbBxHP8uALKhJw==", - "type": "package", - "path": "microsoft.win32.systemevents/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Win32.SystemEvents.dll", - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", - "microsoft.win32.systemevents.4.5.0.nupkg.sha512", - "microsoft.win32.systemevents.nuspec", - "ref/net461/Microsoft.Win32.SystemEvents.dll", - "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", - "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "NETStandard.Library/1.6.1": { - "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "type": "package", - "path": "netstandard.library/1.6.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "netstandard.library.1.6.1.nupkg.sha512", - "netstandard.library.nuspec" - ] - }, - "Newtonsoft.Json/12.0.3": { - "sha512": "6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==", - "type": "package", - "path": "newtonsoft.json/12.0.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/netstandard1.3/Newtonsoft.Json.dll", - "lib/netstandard1.3/Newtonsoft.Json.xml", - "lib/netstandard2.0/Newtonsoft.Json.dll", - "lib/netstandard2.0/Newtonsoft.Json.xml", - "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", - "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", - "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", - "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", - "newtonsoft.json.12.0.3.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "Newtonsoft.Json.Bson/1.0.1": { - "sha512": "5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==", - "type": "package", - "path": "newtonsoft.json.bson/1.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Newtonsoft.Json.Bson.dll", - "lib/net45/Newtonsoft.Json.Bson.xml", - "lib/netstandard1.3/Newtonsoft.Json.Bson.dll", - "lib/netstandard1.3/Newtonsoft.Json.Bson.xml", - "newtonsoft.json.bson.1.0.1.nupkg.sha512", - "newtonsoft.json.bson.nuspec" - ] - }, - "Nito.AsyncEx.Context/5.0.0": { - "sha512": "Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==", - "type": "package", - "path": "nito.asyncex.context/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.3/Nito.AsyncEx.Context.dll", - "lib/netstandard1.3/Nito.AsyncEx.Context.xml", - "lib/netstandard2.0/Nito.AsyncEx.Context.dll", - "lib/netstandard2.0/Nito.AsyncEx.Context.xml", - "nito.asyncex.context.5.0.0.nupkg.sha512", - "nito.asyncex.context.nuspec" - ] - }, - "Nito.AsyncEx.Coordination/5.0.0": { - "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==", - "type": "package", - "path": "nito.asyncex.coordination/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll", - "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml", - "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll", - "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml", - "nito.asyncex.coordination.5.0.0.nupkg.sha512", - "nito.asyncex.coordination.nuspec" - ] - }, - "Nito.AsyncEx.Tasks/5.0.0": { - "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==", - "type": "package", - "path": "nito.asyncex.tasks/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll", - "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml", - "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll", - "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml", - "nito.asyncex.tasks.5.0.0.nupkg.sha512", - "nito.asyncex.tasks.nuspec" - ] - }, - "Nito.Collections.Deque/1.0.4": { - "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==", - "type": "package", - "path": "nito.collections.deque/1.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.0/Nito.Collections.Deque.dll", - "lib/netstandard1.0/Nito.Collections.Deque.xml", - "lib/netstandard2.0/Nito.Collections.Deque.dll", - "lib/netstandard2.0/Nito.Collections.Deque.xml", - "nito.collections.deque.1.0.4.nupkg.sha512", - "nito.collections.deque.nuspec" - ] - }, - "Nito.Disposables/2.0.0": { - "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==", - "type": "package", - "path": "nito.disposables/2.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.0/Nito.Disposables.dll", - "lib/netstandard1.0/Nito.Disposables.pdb", - "lib/netstandard1.0/Nito.Disposables.xml", - "lib/netstandard2.0/Nito.Disposables.dll", - "lib/netstandard2.0/Nito.Disposables.pdb", - "lib/netstandard2.0/Nito.Disposables.xml", - "nito.disposables.2.0.0.nupkg.sha512", - "nito.disposables.nuspec" - ] - }, - "NPOI/2.5.2": { - "sha512": "UNKwT9LX/9TFsEPLUebhdS9IHpQdg33s0eRpkEt/cnNU1O/ioOFnLebEMpaPuiW7efahu6SDCxBJLh5NmXksOw==", - "type": "package", - "path": "npoi/2.5.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE", - "Read Me.txt", - "lib/net45/NPOI.OOXML.XML", - "lib/net45/NPOI.OOXML.dll", - "lib/net45/NPOI.OpenXml4Net.XML", - "lib/net45/NPOI.OpenXml4Net.dll", - "lib/net45/NPOI.OpenXmlFormats.dll", - "lib/net45/NPOI.XML", - "lib/net45/NPOI.dll", - "lib/netstandard2.0/NPOI.OOXML.XML", - "lib/netstandard2.0/NPOI.OOXML.dll", - "lib/netstandard2.0/NPOI.OpenXml4Net.XML", - "lib/netstandard2.0/NPOI.OpenXml4Net.dll", - "lib/netstandard2.0/NPOI.OpenXmlFormats.dll", - "lib/netstandard2.0/NPOI.XML", - "lib/netstandard2.0/NPOI.dll", - "lib/netstandard2.1/NPOI.OOXML.XML", - "lib/netstandard2.1/NPOI.OOXML.dll", - "lib/netstandard2.1/NPOI.OpenXml4Net.XML", - "lib/netstandard2.1/NPOI.OpenXml4Net.dll", - "lib/netstandard2.1/NPOI.OpenXmlFormats.dll", - "lib/netstandard2.1/NPOI.XML", - "lib/netstandard2.1/NPOI.dll", - "logo/120_120.jpg", - "logo/240_240.png", - "logo/32_32.jpg", - "logo/60_60.jpg", - "npoi.2.5.2.nupkg.sha512", - "npoi.nuspec" - ] - }, - "Portable.BouncyCastle/1.8.6": { - "sha512": "y+GvZomzhY+Lwu5mMeNmFFYLHiEr2xFDOANhABn/wgg64/QpTzfgpNGPct+pXgQHjmutd363ZCur/91DLaBxOw==", - "type": "package", - "path": "portable.bouncycastle/1.8.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net40/BouncyCastle.Crypto.dll", - "lib/net40/BouncyCastle.Crypto.xml", - "lib/netstandard2.0/BouncyCastle.Crypto.dll", - "lib/netstandard2.0/BouncyCastle.Crypto.xml", - "portable.bouncycastle.1.8.6.nupkg.sha512", - "portable.bouncycastle.nuspec" - ] - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "type": "package", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "type": "package", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "type": "package", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.native.System/4.3.0": { - "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "type": "package", - "path": "runtime.native.system/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.4.3.0.nupkg.sha512", - "runtime.native.system.nuspec" - ] - }, - "runtime.native.System.IO.Compression/4.3.0": { - "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "type": "package", - "path": "runtime.native.system.io.compression/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "runtime.native.system.io.compression.nuspec" - ] - }, - "runtime.native.System.Net.Http/4.3.0": { - "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "type": "package", - "path": "runtime.native.system.net.http/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.net.http.4.3.0.nupkg.sha512", - "runtime.native.system.net.http.nuspec" - ] - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "type": "package", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "runtime.native.system.security.cryptography.apple.nuspec" - ] - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "type": "package", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.native.system.security.cryptography.openssl.nuspec" - ] - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "type": "package", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "type": "package", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "type": "package", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" - ] - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "type": "package", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" - ] - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "type": "package", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "type": "package", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "type": "package", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "type": "package", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "SharpZipLib/1.2.0": { - "sha512": "zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==", - "type": "package", - "path": "sharpziplib/1.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/ICSharpCode.SharpZipLib.dll", - "lib/net45/ICSharpCode.SharpZipLib.pdb", - "lib/net45/ICSharpCode.SharpZipLib.xml", - "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll", - "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb", - "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml", - "sharpziplib.1.2.0.nupkg.sha512", - "sharpziplib.nuspec" - ] - }, - "Swashbuckle.AspNetCore.Swagger/5.6.3": { - "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==", - "type": "package", - "path": "swashbuckle.aspnetcore.swagger/5.6.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", - "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", - "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", - "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", - "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512", - "swashbuckle.aspnetcore.swagger.nuspec" - ] - }, - "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": { - "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==", - "type": "package", - "path": "swashbuckle.aspnetcore.swaggergen/5.6.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", - "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512", - "swashbuckle.aspnetcore.swaggergen.nuspec" - ] - }, - "System.AppContext/4.3.0": { - "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "type": "package", - "path": "system.appcontext/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.AppContext.dll", - "lib/net463/System.AppContext.dll", - "lib/netcore50/System.AppContext.dll", - "lib/netstandard1.6/System.AppContext.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.AppContext.dll", - "ref/net463/System.AppContext.dll", - "ref/netstandard/_._", - "ref/netstandard1.3/System.AppContext.dll", - "ref/netstandard1.3/System.AppContext.xml", - "ref/netstandard1.3/de/System.AppContext.xml", - "ref/netstandard1.3/es/System.AppContext.xml", - "ref/netstandard1.3/fr/System.AppContext.xml", - "ref/netstandard1.3/it/System.AppContext.xml", - "ref/netstandard1.3/ja/System.AppContext.xml", - "ref/netstandard1.3/ko/System.AppContext.xml", - "ref/netstandard1.3/ru/System.AppContext.xml", - "ref/netstandard1.3/zh-hans/System.AppContext.xml", - "ref/netstandard1.3/zh-hant/System.AppContext.xml", - "ref/netstandard1.6/System.AppContext.dll", - "ref/netstandard1.6/System.AppContext.xml", - "ref/netstandard1.6/de/System.AppContext.xml", - "ref/netstandard1.6/es/System.AppContext.xml", - "ref/netstandard1.6/fr/System.AppContext.xml", - "ref/netstandard1.6/it/System.AppContext.xml", - "ref/netstandard1.6/ja/System.AppContext.xml", - "ref/netstandard1.6/ko/System.AppContext.xml", - "ref/netstandard1.6/ru/System.AppContext.xml", - "ref/netstandard1.6/zh-hans/System.AppContext.xml", - "ref/netstandard1.6/zh-hant/System.AppContext.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.AppContext.dll", - "system.appcontext.4.3.0.nupkg.sha512", - "system.appcontext.nuspec" - ] - }, - "System.Buffers/4.5.0": { - "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", - "type": "package", - "path": "system.buffers/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.1/System.Buffers.dll", - "lib/netstandard1.1/System.Buffers.xml", - "lib/netstandard2.0/System.Buffers.dll", - "lib/netstandard2.0/System.Buffers.xml", - "lib/uap10.0.16299/_._", - "ref/net45/System.Buffers.dll", - "ref/net45/System.Buffers.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.1/System.Buffers.dll", - "ref/netstandard1.1/System.Buffers.xml", - "ref/netstandard2.0/System.Buffers.dll", - "ref/netstandard2.0/System.Buffers.xml", - "ref/uap10.0.16299/_._", - "system.buffers.4.5.0.nupkg.sha512", - "system.buffers.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Collections/4.3.0": { - "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "type": "package", - "path": "system.collections/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.dll", - "ref/netcore50/System.Collections.xml", - "ref/netcore50/de/System.Collections.xml", - "ref/netcore50/es/System.Collections.xml", - "ref/netcore50/fr/System.Collections.xml", - "ref/netcore50/it/System.Collections.xml", - "ref/netcore50/ja/System.Collections.xml", - "ref/netcore50/ko/System.Collections.xml", - "ref/netcore50/ru/System.Collections.xml", - "ref/netcore50/zh-hans/System.Collections.xml", - "ref/netcore50/zh-hant/System.Collections.xml", - "ref/netstandard1.0/System.Collections.dll", - "ref/netstandard1.0/System.Collections.xml", - "ref/netstandard1.0/de/System.Collections.xml", - "ref/netstandard1.0/es/System.Collections.xml", - "ref/netstandard1.0/fr/System.Collections.xml", - "ref/netstandard1.0/it/System.Collections.xml", - "ref/netstandard1.0/ja/System.Collections.xml", - "ref/netstandard1.0/ko/System.Collections.xml", - "ref/netstandard1.0/ru/System.Collections.xml", - "ref/netstandard1.0/zh-hans/System.Collections.xml", - "ref/netstandard1.0/zh-hant/System.Collections.xml", - "ref/netstandard1.3/System.Collections.dll", - "ref/netstandard1.3/System.Collections.xml", - "ref/netstandard1.3/de/System.Collections.xml", - "ref/netstandard1.3/es/System.Collections.xml", - "ref/netstandard1.3/fr/System.Collections.xml", - "ref/netstandard1.3/it/System.Collections.xml", - "ref/netstandard1.3/ja/System.Collections.xml", - "ref/netstandard1.3/ko/System.Collections.xml", - "ref/netstandard1.3/ru/System.Collections.xml", - "ref/netstandard1.3/zh-hans/System.Collections.xml", - "ref/netstandard1.3/zh-hant/System.Collections.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.4.3.0.nupkg.sha512", - "system.collections.nuspec" - ] - }, - "System.Collections.Concurrent/4.3.0": { - "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "type": "package", - "path": "system.collections.concurrent/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.Concurrent.dll", - "lib/netstandard1.3/System.Collections.Concurrent.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.Concurrent.dll", - "ref/netcore50/System.Collections.Concurrent.xml", - "ref/netcore50/de/System.Collections.Concurrent.xml", - "ref/netcore50/es/System.Collections.Concurrent.xml", - "ref/netcore50/fr/System.Collections.Concurrent.xml", - "ref/netcore50/it/System.Collections.Concurrent.xml", - "ref/netcore50/ja/System.Collections.Concurrent.xml", - "ref/netcore50/ko/System.Collections.Concurrent.xml", - "ref/netcore50/ru/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.1/System.Collections.Concurrent.dll", - "ref/netstandard1.1/System.Collections.Concurrent.xml", - "ref/netstandard1.1/de/System.Collections.Concurrent.xml", - "ref/netstandard1.1/es/System.Collections.Concurrent.xml", - "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.1/it/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.3/System.Collections.Concurrent.dll", - "ref/netstandard1.3/System.Collections.Concurrent.xml", - "ref/netstandard1.3/de/System.Collections.Concurrent.xml", - "ref/netstandard1.3/es/System.Collections.Concurrent.xml", - "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.3/it/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.concurrent.4.3.0.nupkg.sha512", - "system.collections.concurrent.nuspec" - ] - }, - "System.Collections.Immutable/5.0.0": { - "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", - "type": "package", - "path": "system.collections.immutable/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Collections.Immutable.dll", - "lib/net461/System.Collections.Immutable.xml", - "lib/netstandard1.0/System.Collections.Immutable.dll", - "lib/netstandard1.0/System.Collections.Immutable.xml", - "lib/netstandard1.3/System.Collections.Immutable.dll", - "lib/netstandard1.3/System.Collections.Immutable.xml", - "lib/netstandard2.0/System.Collections.Immutable.dll", - "lib/netstandard2.0/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", - "system.collections.immutable.5.0.0.nupkg.sha512", - "system.collections.immutable.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.ComponentModel.Annotations/5.0.0": { - "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", - "type": "package", - "path": "system.componentmodel.annotations/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net461/System.ComponentModel.Annotations.dll", - "lib/netcore50/System.ComponentModel.Annotations.dll", - "lib/netstandard1.4/System.ComponentModel.Annotations.dll", - "lib/netstandard2.0/System.ComponentModel.Annotations.dll", - "lib/netstandard2.1/System.ComponentModel.Annotations.dll", - "lib/netstandard2.1/System.ComponentModel.Annotations.xml", - "lib/portable-net45+win8/_._", - "lib/win8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net461/System.ComponentModel.Annotations.dll", - "ref/net461/System.ComponentModel.Annotations.xml", - "ref/netcore50/System.ComponentModel.Annotations.dll", - "ref/netcore50/System.ComponentModel.Annotations.xml", - "ref/netcore50/de/System.ComponentModel.Annotations.xml", - "ref/netcore50/es/System.ComponentModel.Annotations.xml", - "ref/netcore50/fr/System.ComponentModel.Annotations.xml", - "ref/netcore50/it/System.ComponentModel.Annotations.xml", - "ref/netcore50/ja/System.ComponentModel.Annotations.xml", - "ref/netcore50/ko/System.ComponentModel.Annotations.xml", - "ref/netcore50/ru/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/System.ComponentModel.Annotations.dll", - "ref/netstandard1.1/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/System.ComponentModel.Annotations.dll", - "ref/netstandard1.3/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/System.ComponentModel.Annotations.dll", - "ref/netstandard1.4/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard2.0/System.ComponentModel.Annotations.dll", - "ref/netstandard2.0/System.ComponentModel.Annotations.xml", - "ref/netstandard2.1/System.ComponentModel.Annotations.dll", - "ref/netstandard2.1/System.ComponentModel.Annotations.xml", - "ref/portable-net45+win8/_._", - "ref/win8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.annotations.5.0.0.nupkg.sha512", - "system.componentmodel.annotations.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Configuration.ConfigurationManager/4.5.0": { - "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==", - "type": "package", - "path": "system.configuration.configurationmanager/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Configuration.ConfigurationManager.dll", - "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", - "ref/net461/System.Configuration.ConfigurationManager.dll", - "ref/net461/System.Configuration.ConfigurationManager.xml", - "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", - "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", - "system.configuration.configurationmanager.4.5.0.nupkg.sha512", - "system.configuration.configurationmanager.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Console/4.3.0": { - "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "type": "package", - "path": "system.console/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Console.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Console.dll", - "ref/netstandard1.3/System.Console.dll", - "ref/netstandard1.3/System.Console.xml", - "ref/netstandard1.3/de/System.Console.xml", - "ref/netstandard1.3/es/System.Console.xml", - "ref/netstandard1.3/fr/System.Console.xml", - "ref/netstandard1.3/it/System.Console.xml", - "ref/netstandard1.3/ja/System.Console.xml", - "ref/netstandard1.3/ko/System.Console.xml", - "ref/netstandard1.3/ru/System.Console.xml", - "ref/netstandard1.3/zh-hans/System.Console.xml", - "ref/netstandard1.3/zh-hant/System.Console.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.console.4.3.0.nupkg.sha512", - "system.console.nuspec" - ] - }, - "System.Diagnostics.Debug/4.3.0": { - "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "type": "package", - "path": "system.diagnostics.debug/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Debug.dll", - "ref/netcore50/System.Diagnostics.Debug.xml", - "ref/netcore50/de/System.Diagnostics.Debug.xml", - "ref/netcore50/es/System.Diagnostics.Debug.xml", - "ref/netcore50/fr/System.Diagnostics.Debug.xml", - "ref/netcore50/it/System.Diagnostics.Debug.xml", - "ref/netcore50/ja/System.Diagnostics.Debug.xml", - "ref/netcore50/ko/System.Diagnostics.Debug.xml", - "ref/netcore50/ru/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/System.Diagnostics.Debug.dll", - "ref/netstandard1.0/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/System.Diagnostics.Debug.dll", - "ref/netstandard1.3/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.debug.4.3.0.nupkg.sha512", - "system.diagnostics.debug.nuspec" - ] - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/System.Diagnostics.DiagnosticSource.dll", - "lib/net45/System.Diagnostics.DiagnosticSource.xml", - "lib/net46/System.Diagnostics.DiagnosticSource.dll", - "lib/net46/System.Diagnostics.DiagnosticSource.xml", - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Diagnostics.FileVersionInfo/4.3.0": { - "sha512": "omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==", - "type": "package", - "path": "system.diagnostics.fileversioninfo/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.FileVersionInfo.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.FileVersionInfo.dll", - "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", - "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.xml", - "ref/netstandard1.3/de/System.Diagnostics.FileVersionInfo.xml", - "ref/netstandard1.3/es/System.Diagnostics.FileVersionInfo.xml", - "ref/netstandard1.3/fr/System.Diagnostics.FileVersionInfo.xml", - "ref/netstandard1.3/it/System.Diagnostics.FileVersionInfo.xml", - "ref/netstandard1.3/ja/System.Diagnostics.FileVersionInfo.xml", - "ref/netstandard1.3/ko/System.Diagnostics.FileVersionInfo.xml", - "ref/netstandard1.3/ru/System.Diagnostics.FileVersionInfo.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.FileVersionInfo.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.FileVersionInfo.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", - "runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll", - "runtimes/win/lib/netcore50/System.Diagnostics.FileVersionInfo.dll", - "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", - "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512", - "system.diagnostics.fileversioninfo.nuspec" - ] - }, - "System.Diagnostics.StackTrace/4.3.0": { - "sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", - "type": "package", - "path": "system.diagnostics.stacktrace/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.StackTrace.dll", - "lib/netstandard1.3/System.Diagnostics.StackTrace.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.StackTrace.dll", - "ref/netstandard1.3/System.Diagnostics.StackTrace.dll", - "ref/netstandard1.3/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll", - "system.diagnostics.stacktrace.4.3.0.nupkg.sha512", - "system.diagnostics.stacktrace.nuspec" - ] - }, - "System.Diagnostics.Tools/4.3.0": { - "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "type": "package", - "path": "system.diagnostics.tools/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Tools.dll", - "ref/netcore50/System.Diagnostics.Tools.xml", - "ref/netcore50/de/System.Diagnostics.Tools.xml", - "ref/netcore50/es/System.Diagnostics.Tools.xml", - "ref/netcore50/fr/System.Diagnostics.Tools.xml", - "ref/netcore50/it/System.Diagnostics.Tools.xml", - "ref/netcore50/ja/System.Diagnostics.Tools.xml", - "ref/netcore50/ko/System.Diagnostics.Tools.xml", - "ref/netcore50/ru/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/System.Diagnostics.Tools.dll", - "ref/netstandard1.0/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tools.4.3.0.nupkg.sha512", - "system.diagnostics.tools.nuspec" - ] - }, - "System.Diagnostics.Tracing/4.3.0": { - "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "type": "package", - "path": "system.diagnostics.tracing/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Diagnostics.Tracing.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.xml", - "ref/netcore50/de/System.Diagnostics.Tracing.xml", - "ref/netcore50/es/System.Diagnostics.Tracing.xml", - "ref/netcore50/fr/System.Diagnostics.Tracing.xml", - "ref/netcore50/it/System.Diagnostics.Tracing.xml", - "ref/netcore50/ja/System.Diagnostics.Tracing.xml", - "ref/netcore50/ko/System.Diagnostics.Tracing.xml", - "ref/netcore50/ru/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/System.Diagnostics.Tracing.dll", - "ref/netstandard1.1/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/System.Diagnostics.Tracing.dll", - "ref/netstandard1.2/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/System.Diagnostics.Tracing.dll", - "ref/netstandard1.3/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/System.Diagnostics.Tracing.dll", - "ref/netstandard1.5/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tracing.4.3.0.nupkg.sha512", - "system.diagnostics.tracing.nuspec" - ] - }, - "System.Drawing.Common/4.5.0": { - "sha512": "AiJFxxVPdeITstiRS5aAu8+8Dpf5NawTMoapZ53Gfirml24p7HIfhjmCRxdXnmmf3IUA3AX3CcW7G73CjWxW/Q==", - "type": "package", - "path": "system.drawing.common/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Drawing.Common.dll", - "lib/netstandard2.0/System.Drawing.Common.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net461/System.Drawing.Common.dll", - "ref/netstandard2.0/System.Drawing.Common.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", - "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", - "system.drawing.common.4.5.0.nupkg.sha512", - "system.drawing.common.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Dynamic.Runtime/4.3.0": { - "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "type": "package", - "path": "system.dynamic.runtime/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/netstandard1.3/System.Dynamic.Runtime.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Dynamic.Runtime.dll", - "ref/netcore50/System.Dynamic.Runtime.xml", - "ref/netcore50/de/System.Dynamic.Runtime.xml", - "ref/netcore50/es/System.Dynamic.Runtime.xml", - "ref/netcore50/fr/System.Dynamic.Runtime.xml", - "ref/netcore50/it/System.Dynamic.Runtime.xml", - "ref/netcore50/ja/System.Dynamic.Runtime.xml", - "ref/netcore50/ko/System.Dynamic.Runtime.xml", - "ref/netcore50/ru/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/System.Dynamic.Runtime.dll", - "ref/netstandard1.0/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/System.Dynamic.Runtime.dll", - "ref/netstandard1.3/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", - "system.dynamic.runtime.4.3.0.nupkg.sha512", - "system.dynamic.runtime.nuspec" - ] - }, - "System.Globalization/4.3.0": { - "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "type": "package", - "path": "system.globalization/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Globalization.dll", - "ref/netcore50/System.Globalization.xml", - "ref/netcore50/de/System.Globalization.xml", - "ref/netcore50/es/System.Globalization.xml", - "ref/netcore50/fr/System.Globalization.xml", - "ref/netcore50/it/System.Globalization.xml", - "ref/netcore50/ja/System.Globalization.xml", - "ref/netcore50/ko/System.Globalization.xml", - "ref/netcore50/ru/System.Globalization.xml", - "ref/netcore50/zh-hans/System.Globalization.xml", - "ref/netcore50/zh-hant/System.Globalization.xml", - "ref/netstandard1.0/System.Globalization.dll", - "ref/netstandard1.0/System.Globalization.xml", - "ref/netstandard1.0/de/System.Globalization.xml", - "ref/netstandard1.0/es/System.Globalization.xml", - "ref/netstandard1.0/fr/System.Globalization.xml", - "ref/netstandard1.0/it/System.Globalization.xml", - "ref/netstandard1.0/ja/System.Globalization.xml", - "ref/netstandard1.0/ko/System.Globalization.xml", - "ref/netstandard1.0/ru/System.Globalization.xml", - "ref/netstandard1.0/zh-hans/System.Globalization.xml", - "ref/netstandard1.0/zh-hant/System.Globalization.xml", - "ref/netstandard1.3/System.Globalization.dll", - "ref/netstandard1.3/System.Globalization.xml", - "ref/netstandard1.3/de/System.Globalization.xml", - "ref/netstandard1.3/es/System.Globalization.xml", - "ref/netstandard1.3/fr/System.Globalization.xml", - "ref/netstandard1.3/it/System.Globalization.xml", - "ref/netstandard1.3/ja/System.Globalization.xml", - "ref/netstandard1.3/ko/System.Globalization.xml", - "ref/netstandard1.3/ru/System.Globalization.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.globalization.4.3.0.nupkg.sha512", - "system.globalization.nuspec" - ] - }, - "System.Globalization.Calendars/4.3.0": { - "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "type": "package", - "path": "system.globalization.calendars/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.xml", - "ref/netstandard1.3/de/System.Globalization.Calendars.xml", - "ref/netstandard1.3/es/System.Globalization.Calendars.xml", - "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", - "ref/netstandard1.3/it/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.globalization.calendars.4.3.0.nupkg.sha512", - "system.globalization.calendars.nuspec" - ] - }, - "System.Globalization.Extensions/4.3.0": { - "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "type": "package", - "path": "system.globalization.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.xml", - "ref/netstandard1.3/de/System.Globalization.Extensions.xml", - "ref/netstandard1.3/es/System.Globalization.Extensions.xml", - "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", - "ref/netstandard1.3/it/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", - "runtimes/win/lib/net46/System.Globalization.Extensions.dll", - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", - "system.globalization.extensions.4.3.0.nupkg.sha512", - "system.globalization.extensions.nuspec" - ] - }, - "System.IO/4.3.0": { - "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "type": "package", - "path": "system.io/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.IO.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.IO.dll", - "ref/netcore50/System.IO.dll", - "ref/netcore50/System.IO.xml", - "ref/netcore50/de/System.IO.xml", - "ref/netcore50/es/System.IO.xml", - "ref/netcore50/fr/System.IO.xml", - "ref/netcore50/it/System.IO.xml", - "ref/netcore50/ja/System.IO.xml", - "ref/netcore50/ko/System.IO.xml", - "ref/netcore50/ru/System.IO.xml", - "ref/netcore50/zh-hans/System.IO.xml", - "ref/netcore50/zh-hant/System.IO.xml", - "ref/netstandard1.0/System.IO.dll", - "ref/netstandard1.0/System.IO.xml", - "ref/netstandard1.0/de/System.IO.xml", - "ref/netstandard1.0/es/System.IO.xml", - "ref/netstandard1.0/fr/System.IO.xml", - "ref/netstandard1.0/it/System.IO.xml", - "ref/netstandard1.0/ja/System.IO.xml", - "ref/netstandard1.0/ko/System.IO.xml", - "ref/netstandard1.0/ru/System.IO.xml", - "ref/netstandard1.0/zh-hans/System.IO.xml", - "ref/netstandard1.0/zh-hant/System.IO.xml", - "ref/netstandard1.3/System.IO.dll", - "ref/netstandard1.3/System.IO.xml", - "ref/netstandard1.3/de/System.IO.xml", - "ref/netstandard1.3/es/System.IO.xml", - "ref/netstandard1.3/fr/System.IO.xml", - "ref/netstandard1.3/it/System.IO.xml", - "ref/netstandard1.3/ja/System.IO.xml", - "ref/netstandard1.3/ko/System.IO.xml", - "ref/netstandard1.3/ru/System.IO.xml", - "ref/netstandard1.3/zh-hans/System.IO.xml", - "ref/netstandard1.3/zh-hant/System.IO.xml", - "ref/netstandard1.5/System.IO.dll", - "ref/netstandard1.5/System.IO.xml", - "ref/netstandard1.5/de/System.IO.xml", - "ref/netstandard1.5/es/System.IO.xml", - "ref/netstandard1.5/fr/System.IO.xml", - "ref/netstandard1.5/it/System.IO.xml", - "ref/netstandard1.5/ja/System.IO.xml", - "ref/netstandard1.5/ko/System.IO.xml", - "ref/netstandard1.5/ru/System.IO.xml", - "ref/netstandard1.5/zh-hans/System.IO.xml", - "ref/netstandard1.5/zh-hant/System.IO.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.4.3.0.nupkg.sha512", - "system.io.nuspec" - ] - }, - "System.IO.Compression/4.3.0": { - "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "type": "package", - "path": "system.io.compression/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.IO.Compression.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.xml", - "ref/netcore50/de/System.IO.Compression.xml", - "ref/netcore50/es/System.IO.Compression.xml", - "ref/netcore50/fr/System.IO.Compression.xml", - "ref/netcore50/it/System.IO.Compression.xml", - "ref/netcore50/ja/System.IO.Compression.xml", - "ref/netcore50/ko/System.IO.Compression.xml", - "ref/netcore50/ru/System.IO.Compression.xml", - "ref/netcore50/zh-hans/System.IO.Compression.xml", - "ref/netcore50/zh-hant/System.IO.Compression.xml", - "ref/netstandard1.1/System.IO.Compression.dll", - "ref/netstandard1.1/System.IO.Compression.xml", - "ref/netstandard1.1/de/System.IO.Compression.xml", - "ref/netstandard1.1/es/System.IO.Compression.xml", - "ref/netstandard1.1/fr/System.IO.Compression.xml", - "ref/netstandard1.1/it/System.IO.Compression.xml", - "ref/netstandard1.1/ja/System.IO.Compression.xml", - "ref/netstandard1.1/ko/System.IO.Compression.xml", - "ref/netstandard1.1/ru/System.IO.Compression.xml", - "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", - "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", - "ref/netstandard1.3/System.IO.Compression.dll", - "ref/netstandard1.3/System.IO.Compression.xml", - "ref/netstandard1.3/de/System.IO.Compression.xml", - "ref/netstandard1.3/es/System.IO.Compression.xml", - "ref/netstandard1.3/fr/System.IO.Compression.xml", - "ref/netstandard1.3/it/System.IO.Compression.xml", - "ref/netstandard1.3/ja/System.IO.Compression.xml", - "ref/netstandard1.3/ko/System.IO.Compression.xml", - "ref/netstandard1.3/ru/System.IO.Compression.xml", - "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", - "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", - "runtimes/win/lib/net46/System.IO.Compression.dll", - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", - "system.io.compression.4.3.0.nupkg.sha512", - "system.io.compression.nuspec" - ] - }, - "System.IO.Compression.ZipFile/4.3.0": { - "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "type": "package", - "path": "system.io.compression.zipfile/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.Compression.ZipFile.dll", - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.Compression.ZipFile.dll", - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", - "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.compression.zipfile.4.3.0.nupkg.sha512", - "system.io.compression.zipfile.nuspec" - ] - }, - "System.IO.FileSystem/4.3.0": { - "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "type": "package", - "path": "system.io.filesystem/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.4.3.0.nupkg.sha512", - "system.io.filesystem.nuspec" - ] - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "type": "package", - "path": "system.io.filesystem.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "system.io.filesystem.primitives.nuspec" - ] - }, - "System.Linq/4.3.0": { - "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "type": "package", - "path": "system.linq/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.dll", - "lib/netcore50/System.Linq.dll", - "lib/netstandard1.6/System.Linq.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.dll", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/netcore50/de/System.Linq.xml", - "ref/netcore50/es/System.Linq.xml", - "ref/netcore50/fr/System.Linq.xml", - "ref/netcore50/it/System.Linq.xml", - "ref/netcore50/ja/System.Linq.xml", - "ref/netcore50/ko/System.Linq.xml", - "ref/netcore50/ru/System.Linq.xml", - "ref/netcore50/zh-hans/System.Linq.xml", - "ref/netcore50/zh-hant/System.Linq.xml", - "ref/netstandard1.0/System.Linq.dll", - "ref/netstandard1.0/System.Linq.xml", - "ref/netstandard1.0/de/System.Linq.xml", - "ref/netstandard1.0/es/System.Linq.xml", - "ref/netstandard1.0/fr/System.Linq.xml", - "ref/netstandard1.0/it/System.Linq.xml", - "ref/netstandard1.0/ja/System.Linq.xml", - "ref/netstandard1.0/ko/System.Linq.xml", - "ref/netstandard1.0/ru/System.Linq.xml", - "ref/netstandard1.0/zh-hans/System.Linq.xml", - "ref/netstandard1.0/zh-hant/System.Linq.xml", - "ref/netstandard1.6/System.Linq.dll", - "ref/netstandard1.6/System.Linq.xml", - "ref/netstandard1.6/de/System.Linq.xml", - "ref/netstandard1.6/es/System.Linq.xml", - "ref/netstandard1.6/fr/System.Linq.xml", - "ref/netstandard1.6/it/System.Linq.xml", - "ref/netstandard1.6/ja/System.Linq.xml", - "ref/netstandard1.6/ko/System.Linq.xml", - "ref/netstandard1.6/ru/System.Linq.xml", - "ref/netstandard1.6/zh-hans/System.Linq.xml", - "ref/netstandard1.6/zh-hant/System.Linq.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.4.3.0.nupkg.sha512", - "system.linq.nuspec" - ] - }, - "System.Linq.Dynamic.Core/1.1.5": { - "sha512": "VxPRhLUvdALtBE6vdO83LxjSc3RQ9CPYwLofqKg3BkOxgz8xb4Z4vr/YhoSQ5NGHR7m6yhMDzUNUWUEeSTCHmA==", - "type": "package", - "path": "system.linq.dynamic.core/1.1.5", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net35/System.Linq.Dynamic.Core.dll", - "lib/net35/System.Linq.Dynamic.Core.pdb", - "lib/net35/System.Linq.Dynamic.Core.xml", - "lib/net40/System.Linq.Dynamic.Core.dll", - "lib/net40/System.Linq.Dynamic.Core.pdb", - "lib/net40/System.Linq.Dynamic.Core.xml", - "lib/net45/System.Linq.Dynamic.Core.dll", - "lib/net45/System.Linq.Dynamic.Core.pdb", - "lib/net45/System.Linq.Dynamic.Core.xml", - "lib/net46/System.Linq.Dynamic.Core.dll", - "lib/net46/System.Linq.Dynamic.Core.pdb", - "lib/net46/System.Linq.Dynamic.Core.xml", - "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll", - "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb", - "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml", - "lib/netstandard1.3/System.Linq.Dynamic.Core.dll", - "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb", - "lib/netstandard1.3/System.Linq.Dynamic.Core.xml", - "lib/netstandard2.0/System.Linq.Dynamic.Core.dll", - "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb", - "lib/netstandard2.0/System.Linq.Dynamic.Core.xml", - "lib/uap10.0/System.Linq.Dynamic.Core.dll", - "lib/uap10.0/System.Linq.Dynamic.Core.pdb", - "lib/uap10.0/System.Linq.Dynamic.Core.pri", - "lib/uap10.0/System.Linq.Dynamic.Core.xml", - "system.linq.dynamic.core.1.1.5.nupkg.sha512", - "system.linq.dynamic.core.nuspec" - ] - }, - "System.Linq.Expressions/4.3.0": { - "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "type": "package", - "path": "system.linq.expressions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.Expressions.dll", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.6/System.Linq.Expressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "ref/netcore50/de/System.Linq.Expressions.xml", - "ref/netcore50/es/System.Linq.Expressions.xml", - "ref/netcore50/fr/System.Linq.Expressions.xml", - "ref/netcore50/it/System.Linq.Expressions.xml", - "ref/netcore50/ja/System.Linq.Expressions.xml", - "ref/netcore50/ko/System.Linq.Expressions.xml", - "ref/netcore50/ru/System.Linq.Expressions.xml", - "ref/netcore50/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.0/System.Linq.Expressions.dll", - "ref/netstandard1.0/System.Linq.Expressions.xml", - "ref/netstandard1.0/de/System.Linq.Expressions.xml", - "ref/netstandard1.0/es/System.Linq.Expressions.xml", - "ref/netstandard1.0/fr/System.Linq.Expressions.xml", - "ref/netstandard1.0/it/System.Linq.Expressions.xml", - "ref/netstandard1.0/ja/System.Linq.Expressions.xml", - "ref/netstandard1.0/ko/System.Linq.Expressions.xml", - "ref/netstandard1.0/ru/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.3/System.Linq.Expressions.dll", - "ref/netstandard1.3/System.Linq.Expressions.xml", - "ref/netstandard1.3/de/System.Linq.Expressions.xml", - "ref/netstandard1.3/es/System.Linq.Expressions.xml", - "ref/netstandard1.3/fr/System.Linq.Expressions.xml", - "ref/netstandard1.3/it/System.Linq.Expressions.xml", - "ref/netstandard1.3/ja/System.Linq.Expressions.xml", - "ref/netstandard1.3/ko/System.Linq.Expressions.xml", - "ref/netstandard1.3/ru/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.6/System.Linq.Expressions.dll", - "ref/netstandard1.6/System.Linq.Expressions.xml", - "ref/netstandard1.6/de/System.Linq.Expressions.xml", - "ref/netstandard1.6/es/System.Linq.Expressions.xml", - "ref/netstandard1.6/fr/System.Linq.Expressions.xml", - "ref/netstandard1.6/it/System.Linq.Expressions.xml", - "ref/netstandard1.6/ja/System.Linq.Expressions.xml", - "ref/netstandard1.6/ko/System.Linq.Expressions.xml", - "ref/netstandard1.6/ru/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", - "system.linq.expressions.4.3.0.nupkg.sha512", - "system.linq.expressions.nuspec" - ] - }, - "System.Linq.Queryable/4.3.0": { - "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==", - "type": "package", - "path": "system.linq.queryable/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/monoandroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Linq.Queryable.dll", - "lib/netstandard1.3/System.Linq.Queryable.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/monoandroid10/_._", - "ref/monotouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Linq.Queryable.dll", - "ref/netcore50/System.Linq.Queryable.xml", - "ref/netcore50/de/System.Linq.Queryable.xml", - "ref/netcore50/es/System.Linq.Queryable.xml", - "ref/netcore50/fr/System.Linq.Queryable.xml", - "ref/netcore50/it/System.Linq.Queryable.xml", - "ref/netcore50/ja/System.Linq.Queryable.xml", - "ref/netcore50/ko/System.Linq.Queryable.xml", - "ref/netcore50/ru/System.Linq.Queryable.xml", - "ref/netcore50/zh-hans/System.Linq.Queryable.xml", - "ref/netcore50/zh-hant/System.Linq.Queryable.xml", - "ref/netstandard1.0/System.Linq.Queryable.dll", - "ref/netstandard1.0/System.Linq.Queryable.xml", - "ref/netstandard1.0/de/System.Linq.Queryable.xml", - "ref/netstandard1.0/es/System.Linq.Queryable.xml", - "ref/netstandard1.0/fr/System.Linq.Queryable.xml", - "ref/netstandard1.0/it/System.Linq.Queryable.xml", - "ref/netstandard1.0/ja/System.Linq.Queryable.xml", - "ref/netstandard1.0/ko/System.Linq.Queryable.xml", - "ref/netstandard1.0/ru/System.Linq.Queryable.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.queryable.4.3.0.nupkg.sha512", - "system.linq.queryable.nuspec" - ] - }, - "System.Net.Http/4.3.0": { - "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "type": "package", - "path": "system.net.http/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/Xamarinmac20/_._", - "lib/monoandroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/net46/System.Net.Http.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/Xamarinmac20/_._", - "ref/monoandroid10/_._", - "ref/monotouch10/_._", - "ref/net45/_._", - "ref/net46/System.Net.Http.dll", - "ref/net46/System.Net.Http.xml", - "ref/net46/de/System.Net.Http.xml", - "ref/net46/es/System.Net.Http.xml", - "ref/net46/fr/System.Net.Http.xml", - "ref/net46/it/System.Net.Http.xml", - "ref/net46/ja/System.Net.Http.xml", - "ref/net46/ko/System.Net.Http.xml", - "ref/net46/ru/System.Net.Http.xml", - "ref/net46/zh-hans/System.Net.Http.xml", - "ref/net46/zh-hant/System.Net.Http.xml", - "ref/netcore50/System.Net.Http.dll", - "ref/netcore50/System.Net.Http.xml", - "ref/netcore50/de/System.Net.Http.xml", - "ref/netcore50/es/System.Net.Http.xml", - "ref/netcore50/fr/System.Net.Http.xml", - "ref/netcore50/it/System.Net.Http.xml", - "ref/netcore50/ja/System.Net.Http.xml", - "ref/netcore50/ko/System.Net.Http.xml", - "ref/netcore50/ru/System.Net.Http.xml", - "ref/netcore50/zh-hans/System.Net.Http.xml", - "ref/netcore50/zh-hant/System.Net.Http.xml", - "ref/netstandard1.1/System.Net.Http.dll", - "ref/netstandard1.1/System.Net.Http.xml", - "ref/netstandard1.1/de/System.Net.Http.xml", - "ref/netstandard1.1/es/System.Net.Http.xml", - "ref/netstandard1.1/fr/System.Net.Http.xml", - "ref/netstandard1.1/it/System.Net.Http.xml", - "ref/netstandard1.1/ja/System.Net.Http.xml", - "ref/netstandard1.1/ko/System.Net.Http.xml", - "ref/netstandard1.1/ru/System.Net.Http.xml", - "ref/netstandard1.1/zh-hans/System.Net.Http.xml", - "ref/netstandard1.1/zh-hant/System.Net.Http.xml", - "ref/netstandard1.3/System.Net.Http.dll", - "ref/netstandard1.3/System.Net.Http.xml", - "ref/netstandard1.3/de/System.Net.Http.xml", - "ref/netstandard1.3/es/System.Net.Http.xml", - "ref/netstandard1.3/fr/System.Net.Http.xml", - "ref/netstandard1.3/it/System.Net.Http.xml", - "ref/netstandard1.3/ja/System.Net.Http.xml", - "ref/netstandard1.3/ko/System.Net.Http.xml", - "ref/netstandard1.3/ru/System.Net.Http.xml", - "ref/netstandard1.3/zh-hans/System.Net.Http.xml", - "ref/netstandard1.3/zh-hant/System.Net.Http.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", - "runtimes/win/lib/net46/System.Net.Http.dll", - "runtimes/win/lib/netcore50/System.Net.Http.dll", - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", - "system.net.http.4.3.0.nupkg.sha512", - "system.net.http.nuspec" - ] - }, - "System.Net.Primitives/4.3.0": { - "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "type": "package", - "path": "system.net.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Net.Primitives.dll", - "ref/netcore50/System.Net.Primitives.xml", - "ref/netcore50/de/System.Net.Primitives.xml", - "ref/netcore50/es/System.Net.Primitives.xml", - "ref/netcore50/fr/System.Net.Primitives.xml", - "ref/netcore50/it/System.Net.Primitives.xml", - "ref/netcore50/ja/System.Net.Primitives.xml", - "ref/netcore50/ko/System.Net.Primitives.xml", - "ref/netcore50/ru/System.Net.Primitives.xml", - "ref/netcore50/zh-hans/System.Net.Primitives.xml", - "ref/netcore50/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.0/System.Net.Primitives.dll", - "ref/netstandard1.0/System.Net.Primitives.xml", - "ref/netstandard1.0/de/System.Net.Primitives.xml", - "ref/netstandard1.0/es/System.Net.Primitives.xml", - "ref/netstandard1.0/fr/System.Net.Primitives.xml", - "ref/netstandard1.0/it/System.Net.Primitives.xml", - "ref/netstandard1.0/ja/System.Net.Primitives.xml", - "ref/netstandard1.0/ko/System.Net.Primitives.xml", - "ref/netstandard1.0/ru/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.1/System.Net.Primitives.dll", - "ref/netstandard1.1/System.Net.Primitives.xml", - "ref/netstandard1.1/de/System.Net.Primitives.xml", - "ref/netstandard1.1/es/System.Net.Primitives.xml", - "ref/netstandard1.1/fr/System.Net.Primitives.xml", - "ref/netstandard1.1/it/System.Net.Primitives.xml", - "ref/netstandard1.1/ja/System.Net.Primitives.xml", - "ref/netstandard1.1/ko/System.Net.Primitives.xml", - "ref/netstandard1.1/ru/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.3/System.Net.Primitives.dll", - "ref/netstandard1.3/System.Net.Primitives.xml", - "ref/netstandard1.3/de/System.Net.Primitives.xml", - "ref/netstandard1.3/es/System.Net.Primitives.xml", - "ref/netstandard1.3/fr/System.Net.Primitives.xml", - "ref/netstandard1.3/it/System.Net.Primitives.xml", - "ref/netstandard1.3/ja/System.Net.Primitives.xml", - "ref/netstandard1.3/ko/System.Net.Primitives.xml", - "ref/netstandard1.3/ru/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.primitives.4.3.0.nupkg.sha512", - "system.net.primitives.nuspec" - ] - }, - "System.Net.Sockets/4.3.0": { - "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "type": "package", - "path": "system.net.sockets/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.Sockets.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.Sockets.dll", - "ref/netstandard1.3/System.Net.Sockets.dll", - "ref/netstandard1.3/System.Net.Sockets.xml", - "ref/netstandard1.3/de/System.Net.Sockets.xml", - "ref/netstandard1.3/es/System.Net.Sockets.xml", - "ref/netstandard1.3/fr/System.Net.Sockets.xml", - "ref/netstandard1.3/it/System.Net.Sockets.xml", - "ref/netstandard1.3/ja/System.Net.Sockets.xml", - "ref/netstandard1.3/ko/System.Net.Sockets.xml", - "ref/netstandard1.3/ru/System.Net.Sockets.xml", - "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", - "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.sockets.4.3.0.nupkg.sha512", - "system.net.sockets.nuspec" - ] - }, - "System.ObjectModel/4.3.0": { - "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "type": "package", - "path": "system.objectmodel/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/netstandard1.3/System.ObjectModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/de/System.ObjectModel.xml", - "ref/netcore50/es/System.ObjectModel.xml", - "ref/netcore50/fr/System.ObjectModel.xml", - "ref/netcore50/it/System.ObjectModel.xml", - "ref/netcore50/ja/System.ObjectModel.xml", - "ref/netcore50/ko/System.ObjectModel.xml", - "ref/netcore50/ru/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.0/System.ObjectModel.dll", - "ref/netstandard1.0/System.ObjectModel.xml", - "ref/netstandard1.0/de/System.ObjectModel.xml", - "ref/netstandard1.0/es/System.ObjectModel.xml", - "ref/netstandard1.0/fr/System.ObjectModel.xml", - "ref/netstandard1.0/it/System.ObjectModel.xml", - "ref/netstandard1.0/ja/System.ObjectModel.xml", - "ref/netstandard1.0/ko/System.ObjectModel.xml", - "ref/netstandard1.0/ru/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.3/System.ObjectModel.dll", - "ref/netstandard1.3/System.ObjectModel.xml", - "ref/netstandard1.3/de/System.ObjectModel.xml", - "ref/netstandard1.3/es/System.ObjectModel.xml", - "ref/netstandard1.3/fr/System.ObjectModel.xml", - "ref/netstandard1.3/it/System.ObjectModel.xml", - "ref/netstandard1.3/ja/System.ObjectModel.xml", - "ref/netstandard1.3/ko/System.ObjectModel.xml", - "ref/netstandard1.3/ru/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.objectmodel.4.3.0.nupkg.sha512", - "system.objectmodel.nuspec" - ] - }, - "System.Reflection/4.3.0": { - "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "type": "package", - "path": "system.reflection/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Reflection.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Reflection.dll", - "ref/netcore50/System.Reflection.dll", - "ref/netcore50/System.Reflection.xml", - "ref/netcore50/de/System.Reflection.xml", - "ref/netcore50/es/System.Reflection.xml", - "ref/netcore50/fr/System.Reflection.xml", - "ref/netcore50/it/System.Reflection.xml", - "ref/netcore50/ja/System.Reflection.xml", - "ref/netcore50/ko/System.Reflection.xml", - "ref/netcore50/ru/System.Reflection.xml", - "ref/netcore50/zh-hans/System.Reflection.xml", - "ref/netcore50/zh-hant/System.Reflection.xml", - "ref/netstandard1.0/System.Reflection.dll", - "ref/netstandard1.0/System.Reflection.xml", - "ref/netstandard1.0/de/System.Reflection.xml", - "ref/netstandard1.0/es/System.Reflection.xml", - "ref/netstandard1.0/fr/System.Reflection.xml", - "ref/netstandard1.0/it/System.Reflection.xml", - "ref/netstandard1.0/ja/System.Reflection.xml", - "ref/netstandard1.0/ko/System.Reflection.xml", - "ref/netstandard1.0/ru/System.Reflection.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.xml", - "ref/netstandard1.3/System.Reflection.dll", - "ref/netstandard1.3/System.Reflection.xml", - "ref/netstandard1.3/de/System.Reflection.xml", - "ref/netstandard1.3/es/System.Reflection.xml", - "ref/netstandard1.3/fr/System.Reflection.xml", - "ref/netstandard1.3/it/System.Reflection.xml", - "ref/netstandard1.3/ja/System.Reflection.xml", - "ref/netstandard1.3/ko/System.Reflection.xml", - "ref/netstandard1.3/ru/System.Reflection.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.xml", - "ref/netstandard1.5/System.Reflection.dll", - "ref/netstandard1.5/System.Reflection.xml", - "ref/netstandard1.5/de/System.Reflection.xml", - "ref/netstandard1.5/es/System.Reflection.xml", - "ref/netstandard1.5/fr/System.Reflection.xml", - "ref/netstandard1.5/it/System.Reflection.xml", - "ref/netstandard1.5/ja/System.Reflection.xml", - "ref/netstandard1.5/ko/System.Reflection.xml", - "ref/netstandard1.5/ru/System.Reflection.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.4.3.0.nupkg.sha512", - "system.reflection.nuspec" - ] - }, - "System.Reflection.Emit/4.3.0": { - "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "type": "package", - "path": "system.reflection.emit/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/netstandard1.3/System.Reflection.Emit.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/net45/_._", - "ref/netstandard1.1/System.Reflection.Emit.dll", - "ref/netstandard1.1/System.Reflection.Emit.xml", - "ref/netstandard1.1/de/System.Reflection.Emit.xml", - "ref/netstandard1.1/es/System.Reflection.Emit.xml", - "ref/netstandard1.1/fr/System.Reflection.Emit.xml", - "ref/netstandard1.1/it/System.Reflection.Emit.xml", - "ref/netstandard1.1/ja/System.Reflection.Emit.xml", - "ref/netstandard1.1/ko/System.Reflection.Emit.xml", - "ref/netstandard1.1/ru/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", - "ref/xamarinmac20/_._", - "system.reflection.emit.4.3.0.nupkg.sha512", - "system.reflection.emit.nuspec" - ] - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "type": "package", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "system.reflection.emit.ilgeneration.nuspec" - ] - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "type": "package", - "path": "system.reflection.emit.lightweight/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "system.reflection.emit.lightweight.nuspec" - ] - }, - "System.Reflection.Extensions/4.3.0": { - "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "type": "package", - "path": "system.reflection.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/de/System.Reflection.Extensions.xml", - "ref/netcore50/es/System.Reflection.Extensions.xml", - "ref/netcore50/fr/System.Reflection.Extensions.xml", - "ref/netcore50/it/System.Reflection.Extensions.xml", - "ref/netcore50/ja/System.Reflection.Extensions.xml", - "ref/netcore50/ko/System.Reflection.Extensions.xml", - "ref/netcore50/ru/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/netstandard1.0/System.Reflection.Extensions.dll", - "ref/netstandard1.0/System.Reflection.Extensions.xml", - "ref/netstandard1.0/de/System.Reflection.Extensions.xml", - "ref/netstandard1.0/es/System.Reflection.Extensions.xml", - "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", - "ref/netstandard1.0/it/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.extensions.4.3.0.nupkg.sha512", - "system.reflection.extensions.nuspec" - ] - }, - "System.Reflection.Metadata/1.4.2": { - "sha512": "KYPNMDrLB2R+G5JJiJ2fjBpihtktKVIjsirmyyv+VDo5rQkIR9BWeCYM1wDSzbQatWNZ/NQfPsQyTB1Ui3qBfQ==", - "type": "package", - "path": "system.reflection.metadata/1.4.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.1/System.Reflection.Metadata.dll", - "lib/netstandard1.1/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.dll", - "lib/portable-net45+win8/System.Reflection.Metadata.xml", - "system.reflection.metadata.1.4.2.nupkg.sha512", - "system.reflection.metadata.nuspec" - ] - }, - "System.Reflection.Primitives/4.3.0": { - "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "type": "package", - "path": "system.reflection.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Primitives.dll", - "ref/netcore50/System.Reflection.Primitives.xml", - "ref/netcore50/de/System.Reflection.Primitives.xml", - "ref/netcore50/es/System.Reflection.Primitives.xml", - "ref/netcore50/fr/System.Reflection.Primitives.xml", - "ref/netcore50/it/System.Reflection.Primitives.xml", - "ref/netcore50/ja/System.Reflection.Primitives.xml", - "ref/netcore50/ko/System.Reflection.Primitives.xml", - "ref/netcore50/ru/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", - "ref/netstandard1.0/System.Reflection.Primitives.dll", - "ref/netstandard1.0/System.Reflection.Primitives.xml", - "ref/netstandard1.0/de/System.Reflection.Primitives.xml", - "ref/netstandard1.0/es/System.Reflection.Primitives.xml", - "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", - "ref/netstandard1.0/it/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.primitives.4.3.0.nupkg.sha512", - "system.reflection.primitives.nuspec" - ] - }, - "System.Reflection.TypeExtensions/4.3.0": { - "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "type": "package", - "path": "system.reflection.typeextensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net462/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net462/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "system.reflection.typeextensions.4.3.0.nupkg.sha512", - "system.reflection.typeextensions.nuspec" - ] - }, - "System.Resources.ResourceManager/4.3.0": { - "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "type": "package", - "path": "system.resources.resourcemanager/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/netcore50/de/System.Resources.ResourceManager.xml", - "ref/netcore50/es/System.Resources.ResourceManager.xml", - "ref/netcore50/fr/System.Resources.ResourceManager.xml", - "ref/netcore50/it/System.Resources.ResourceManager.xml", - "ref/netcore50/ja/System.Resources.ResourceManager.xml", - "ref/netcore50/ko/System.Resources.ResourceManager.xml", - "ref/netcore50/ru/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/System.Resources.ResourceManager.dll", - "ref/netstandard1.0/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.resources.resourcemanager.4.3.0.nupkg.sha512", - "system.resources.resourcemanager.nuspec" - ] - }, - "System.Runtime/4.3.0": { - "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "type": "package", - "path": "system.runtime/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.dll", - "lib/portable-net45+win8+wp80+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.dll", - "ref/netcore50/System.Runtime.dll", - "ref/netcore50/System.Runtime.xml", - "ref/netcore50/de/System.Runtime.xml", - "ref/netcore50/es/System.Runtime.xml", - "ref/netcore50/fr/System.Runtime.xml", - "ref/netcore50/it/System.Runtime.xml", - "ref/netcore50/ja/System.Runtime.xml", - "ref/netcore50/ko/System.Runtime.xml", - "ref/netcore50/ru/System.Runtime.xml", - "ref/netcore50/zh-hans/System.Runtime.xml", - "ref/netcore50/zh-hant/System.Runtime.xml", - "ref/netstandard1.0/System.Runtime.dll", - "ref/netstandard1.0/System.Runtime.xml", - "ref/netstandard1.0/de/System.Runtime.xml", - "ref/netstandard1.0/es/System.Runtime.xml", - "ref/netstandard1.0/fr/System.Runtime.xml", - "ref/netstandard1.0/it/System.Runtime.xml", - "ref/netstandard1.0/ja/System.Runtime.xml", - "ref/netstandard1.0/ko/System.Runtime.xml", - "ref/netstandard1.0/ru/System.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.xml", - "ref/netstandard1.2/System.Runtime.dll", - "ref/netstandard1.2/System.Runtime.xml", - "ref/netstandard1.2/de/System.Runtime.xml", - "ref/netstandard1.2/es/System.Runtime.xml", - "ref/netstandard1.2/fr/System.Runtime.xml", - "ref/netstandard1.2/it/System.Runtime.xml", - "ref/netstandard1.2/ja/System.Runtime.xml", - "ref/netstandard1.2/ko/System.Runtime.xml", - "ref/netstandard1.2/ru/System.Runtime.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.xml", - "ref/netstandard1.3/System.Runtime.dll", - "ref/netstandard1.3/System.Runtime.xml", - "ref/netstandard1.3/de/System.Runtime.xml", - "ref/netstandard1.3/es/System.Runtime.xml", - "ref/netstandard1.3/fr/System.Runtime.xml", - "ref/netstandard1.3/it/System.Runtime.xml", - "ref/netstandard1.3/ja/System.Runtime.xml", - "ref/netstandard1.3/ko/System.Runtime.xml", - "ref/netstandard1.3/ru/System.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.xml", - "ref/netstandard1.5/System.Runtime.dll", - "ref/netstandard1.5/System.Runtime.xml", - "ref/netstandard1.5/de/System.Runtime.xml", - "ref/netstandard1.5/es/System.Runtime.xml", - "ref/netstandard1.5/fr/System.Runtime.xml", - "ref/netstandard1.5/it/System.Runtime.xml", - "ref/netstandard1.5/ja/System.Runtime.xml", - "ref/netstandard1.5/ko/System.Runtime.xml", - "ref/netstandard1.5/ru/System.Runtime.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.xml", - "ref/portable-net45+win8+wp80+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.4.3.0.nupkg.sha512", - "system.runtime.nuspec" - ] - }, - "System.Runtime.Extensions/4.3.0": { - "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "type": "package", - "path": "system.runtime.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.xml", - "ref/netcore50/de/System.Runtime.Extensions.xml", - "ref/netcore50/es/System.Runtime.Extensions.xml", - "ref/netcore50/fr/System.Runtime.Extensions.xml", - "ref/netcore50/it/System.Runtime.Extensions.xml", - "ref/netcore50/ja/System.Runtime.Extensions.xml", - "ref/netcore50/ko/System.Runtime.Extensions.xml", - "ref/netcore50/ru/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.0/System.Runtime.Extensions.dll", - "ref/netstandard1.0/System.Runtime.Extensions.xml", - "ref/netstandard1.0/de/System.Runtime.Extensions.xml", - "ref/netstandard1.0/es/System.Runtime.Extensions.xml", - "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.0/it/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.3/System.Runtime.Extensions.dll", - "ref/netstandard1.3/System.Runtime.Extensions.xml", - "ref/netstandard1.3/de/System.Runtime.Extensions.xml", - "ref/netstandard1.3/es/System.Runtime.Extensions.xml", - "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.3/it/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.5/System.Runtime.Extensions.dll", - "ref/netstandard1.5/System.Runtime.Extensions.xml", - "ref/netstandard1.5/de/System.Runtime.Extensions.xml", - "ref/netstandard1.5/es/System.Runtime.Extensions.xml", - "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.5/it/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.extensions.4.3.0.nupkg.sha512", - "system.runtime.extensions.nuspec" - ] - }, - "System.Runtime.Handles/4.3.0": { - "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "type": "package", - "path": "system.runtime.handles/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/netstandard1.3/System.Runtime.Handles.dll", - "ref/netstandard1.3/System.Runtime.Handles.xml", - "ref/netstandard1.3/de/System.Runtime.Handles.xml", - "ref/netstandard1.3/es/System.Runtime.Handles.xml", - "ref/netstandard1.3/fr/System.Runtime.Handles.xml", - "ref/netstandard1.3/it/System.Runtime.Handles.xml", - "ref/netstandard1.3/ja/System.Runtime.Handles.xml", - "ref/netstandard1.3/ko/System.Runtime.Handles.xml", - "ref/netstandard1.3/ru/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.handles.4.3.0.nupkg.sha512", - "system.runtime.handles.nuspec" - ] - }, - "System.Runtime.InteropServices/4.3.0": { - "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "type": "package", - "path": "system.runtime.interopservices/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.InteropServices.dll", - "lib/net463/System.Runtime.InteropServices.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.InteropServices.dll", - "ref/net463/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.xml", - "ref/netcore50/de/System.Runtime.InteropServices.xml", - "ref/netcore50/es/System.Runtime.InteropServices.xml", - "ref/netcore50/fr/System.Runtime.InteropServices.xml", - "ref/netcore50/it/System.Runtime.InteropServices.xml", - "ref/netcore50/ja/System.Runtime.InteropServices.xml", - "ref/netcore50/ko/System.Runtime.InteropServices.xml", - "ref/netcore50/ru/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", - "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/System.Runtime.InteropServices.dll", - "ref/netstandard1.2/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/System.Runtime.InteropServices.dll", - "ref/netstandard1.3/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/System.Runtime.InteropServices.dll", - "ref/netstandard1.5/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.interopservices.4.3.0.nupkg.sha512", - "system.runtime.interopservices.nuspec" - ] - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "type": "package", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", - "system.runtime.interopservices.runtimeinformation.nuspec" - ] - }, - "System.Runtime.Loader/4.3.0": { - "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==", - "type": "package", - "path": "system.runtime.loader/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net462/_._", - "lib/netstandard1.5/System.Runtime.Loader.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard1.5/System.Runtime.Loader.dll", - "ref/netstandard1.5/System.Runtime.Loader.xml", - "ref/netstandard1.5/de/System.Runtime.Loader.xml", - "ref/netstandard1.5/es/System.Runtime.Loader.xml", - "ref/netstandard1.5/fr/System.Runtime.Loader.xml", - "ref/netstandard1.5/it/System.Runtime.Loader.xml", - "ref/netstandard1.5/ja/System.Runtime.Loader.xml", - "ref/netstandard1.5/ko/System.Runtime.Loader.xml", - "ref/netstandard1.5/ru/System.Runtime.Loader.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml", - "system.runtime.loader.4.3.0.nupkg.sha512", - "system.runtime.loader.nuspec" - ] - }, - "System.Runtime.Numerics/4.3.0": { - "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "type": "package", - "path": "system.runtime.numerics/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Numerics.dll", - "lib/netstandard1.3/System.Runtime.Numerics.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Runtime.Numerics.dll", - "ref/netcore50/System.Runtime.Numerics.xml", - "ref/netcore50/de/System.Runtime.Numerics.xml", - "ref/netcore50/es/System.Runtime.Numerics.xml", - "ref/netcore50/fr/System.Runtime.Numerics.xml", - "ref/netcore50/it/System.Runtime.Numerics.xml", - "ref/netcore50/ja/System.Runtime.Numerics.xml", - "ref/netcore50/ko/System.Runtime.Numerics.xml", - "ref/netcore50/ru/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", - "ref/netstandard1.1/System.Runtime.Numerics.dll", - "ref/netstandard1.1/System.Runtime.Numerics.xml", - "ref/netstandard1.1/de/System.Runtime.Numerics.xml", - "ref/netstandard1.1/es/System.Runtime.Numerics.xml", - "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", - "ref/netstandard1.1/it/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.numerics.4.3.0.nupkg.sha512", - "system.runtime.numerics.nuspec" - ] - }, - "System.Security.AccessControl/4.5.0": { - "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", - "type": "package", - "path": "system.security.accesscontrol/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.dll", - "lib/netstandard1.3/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.dll", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.xml", - "ref/netstandard1.3/System.Security.AccessControl.dll", - "ref/netstandard1.3/System.Security.AccessControl.xml", - "ref/netstandard1.3/de/System.Security.AccessControl.xml", - "ref/netstandard1.3/es/System.Security.AccessControl.xml", - "ref/netstandard1.3/fr/System.Security.AccessControl.xml", - "ref/netstandard1.3/it/System.Security.AccessControl.xml", - "ref/netstandard1.3/ja/System.Security.AccessControl.xml", - "ref/netstandard1.3/ko/System.Security.AccessControl.xml", - "ref/netstandard1.3/ru/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", - "ref/netstandard2.0/System.Security.AccessControl.dll", - "ref/netstandard2.0/System.Security.AccessControl.xml", - "ref/uap10.0.16299/_._", - "runtimes/win/lib/net46/System.Security.AccessControl.dll", - "runtimes/win/lib/net461/System.Security.AccessControl.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", - "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.accesscontrol.4.5.0.nupkg.sha512", - "system.security.accesscontrol.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "type": "package", - "path": "system.security.cryptography.algorithms/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Algorithms.dll", - "lib/net461/System.Security.Cryptography.Algorithms.dll", - "lib/net463/System.Security.Cryptography.Algorithms.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Algorithms.dll", - "ref/net461/System.Security.Cryptography.Algorithms.dll", - "ref/net463/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "system.security.cryptography.algorithms.nuspec" - ] - }, - "System.Security.Cryptography.Cng/4.5.0": { - "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", - "type": "package", - "path": "system.security.cryptography.cng/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Cng.dll", - "lib/net461/System.Security.Cryptography.Cng.dll", - "lib/net462/System.Security.Cryptography.Cng.dll", - "lib/net47/System.Security.Cryptography.Cng.dll", - "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", - "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", - "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", - "lib/uap10.0.16299/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.xml", - "ref/net462/System.Security.Cryptography.Cng.dll", - "ref/net462/System.Security.Cryptography.Cng.xml", - "ref/net47/System.Security.Cryptography.Cng.dll", - "ref/net47/System.Security.Cryptography.Cng.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", - "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", - "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", - "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", - "ref/uap10.0.16299/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.cryptography.cng.4.5.0.nupkg.sha512", - "system.security.cryptography.cng.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Cryptography.Csp/4.3.0": { - "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "type": "package", - "path": "system.security.cryptography.csp/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Csp.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Csp.dll", - "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", - "runtimes/win/lib/netcore50/_._", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", - "system.security.cryptography.csp.4.3.0.nupkg.sha512", - "system.security.cryptography.csp.nuspec" - ] - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "type": "package", - "path": "system.security.cryptography.encoding/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Encoding.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "system.security.cryptography.encoding.nuspec" - ] - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "type": "package", - "path": "system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "system.security.cryptography.openssl.nuspec" - ] - }, - "System.Security.Cryptography.Pkcs/4.5.0": { - "sha512": "TGQX51gxpY3K3I6LJlE2LAftVlIMqJf0cBGhz68Y89jjk3LJCB6SrwiD+YN1fkqemBvWGs+GjyMJukl6d6goyQ==", - "type": "package", - "path": "system.security.cryptography.pkcs/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.Cryptography.Pkcs.dll", - "lib/net461/System.Security.Cryptography.Pkcs.dll", - "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", - "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", - "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", - "ref/net46/System.Security.Cryptography.Pkcs.dll", - "ref/net461/System.Security.Cryptography.Pkcs.dll", - "ref/net461/System.Security.Cryptography.Pkcs.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml", - "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll", - "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll", - "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml", - "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", - "system.security.cryptography.pkcs.4.5.0.nupkg.sha512", - "system.security.cryptography.pkcs.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "type": "package", - "path": "system.security.cryptography.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Primitives.dll", - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Primitives.dll", - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "system.security.cryptography.primitives.nuspec" - ] - }, - "System.Security.Cryptography.ProtectedData/4.5.0": { - "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==", - "type": "package", - "path": "system.security.cryptography.protecteddata/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.ProtectedData.dll", - "lib/net461/System.Security.Cryptography.ProtectedData.dll", - "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", - "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.ProtectedData.dll", - "ref/net461/System.Security.Cryptography.ProtectedData.dll", - "ref/net461/System.Security.Cryptography.ProtectedData.xml", - "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", - "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", - "system.security.cryptography.protecteddata.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "type": "package", - "path": "system.security.cryptography.x509certificates/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.X509Certificates.dll", - "lib/net461/System.Security.Cryptography.X509Certificates.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.X509Certificates.dll", - "ref/net461/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "system.security.cryptography.x509certificates.nuspec" - ] - }, - "System.Security.Cryptography.Xml/4.5.0": { - "sha512": "i2Jn6rGXR63J0zIklImGRkDIJL4b1NfPSEbIVHBlqoIb12lfXIigCbDRpDmIEzwSo/v1U5y/rYJdzZYSyCWxvg==", - "type": "package", - "path": "system.security.cryptography.xml/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Security.Cryptography.Xml.dll", - "lib/netstandard2.0/System.Security.Cryptography.Xml.dll", - "ref/net461/System.Security.Cryptography.Xml.dll", - "ref/net461/System.Security.Cryptography.Xml.xml", - "ref/netstandard2.0/System.Security.Cryptography.Xml.dll", - "ref/netstandard2.0/System.Security.Cryptography.Xml.xml", - "system.security.cryptography.xml.4.5.0.nupkg.sha512", - "system.security.cryptography.xml.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Permissions/4.5.0": { - "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", - "type": "package", - "path": "system.security.permissions/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Security.Permissions.dll", - "lib/netstandard2.0/System.Security.Permissions.dll", - "ref/net461/System.Security.Permissions.dll", - "ref/net461/System.Security.Permissions.xml", - "ref/netstandard2.0/System.Security.Permissions.dll", - "ref/netstandard2.0/System.Security.Permissions.xml", - "system.security.permissions.4.5.0.nupkg.sha512", - "system.security.permissions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Principal.Windows/4.5.0": { - "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", - "type": "package", - "path": "system.security.principal.windows/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.Principal.Windows.dll", - "lib/net461/System.Security.Principal.Windows.dll", - "lib/netstandard1.3/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.dll", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/System.Security.Principal.Windows.dll", - "ref/netstandard1.3/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", - "ref/netstandard2.0/System.Security.Principal.Windows.dll", - "ref/netstandard2.0/System.Security.Principal.Windows.xml", - "ref/uap10.0.16299/_._", - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.principal.windows.4.5.0.nupkg.sha512", - "system.security.principal.windows.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Text.Encoding/4.3.0": { - "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "type": "package", - "path": "system.text.encoding/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.dll", - "ref/netcore50/System.Text.Encoding.xml", - "ref/netcore50/de/System.Text.Encoding.xml", - "ref/netcore50/es/System.Text.Encoding.xml", - "ref/netcore50/fr/System.Text.Encoding.xml", - "ref/netcore50/it/System.Text.Encoding.xml", - "ref/netcore50/ja/System.Text.Encoding.xml", - "ref/netcore50/ko/System.Text.Encoding.xml", - "ref/netcore50/ru/System.Text.Encoding.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.0/System.Text.Encoding.dll", - "ref/netstandard1.0/System.Text.Encoding.xml", - "ref/netstandard1.0/de/System.Text.Encoding.xml", - "ref/netstandard1.0/es/System.Text.Encoding.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.xml", - "ref/netstandard1.0/it/System.Text.Encoding.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.3/System.Text.Encoding.dll", - "ref/netstandard1.3/System.Text.Encoding.xml", - "ref/netstandard1.3/de/System.Text.Encoding.xml", - "ref/netstandard1.3/es/System.Text.Encoding.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.xml", - "ref/netstandard1.3/it/System.Text.Encoding.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.encoding.4.3.0.nupkg.sha512", - "system.text.encoding.nuspec" - ] - }, - "System.Text.Encoding.CodePages/4.3.0": { - "sha512": "IRiEFUa5b/Gs5Egg8oqBVoywhtOeaO2KOx3j0RfcYY/raxqBuEK7NXRDgOwtYM8qbi+7S4RPXUbNt+ZxyY0/NQ==", - "type": "package", - "path": "system.text.encoding.codepages/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Text.Encoding.CodePages.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.3/System.Text.Encoding.CodePages.dll", - "ref/netstandard1.3/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "system.text.encoding.codepages.4.3.0.nupkg.sha512", - "system.text.encoding.codepages.nuspec" - ] - }, - "System.Text.Encoding.Extensions/4.3.0": { - "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "type": "package", - "path": "system.text.encoding.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.Extensions.dll", - "ref/netcore50/System.Text.Encoding.Extensions.xml", - "ref/netcore50/de/System.Text.Encoding.Extensions.xml", - "ref/netcore50/es/System.Text.Encoding.Extensions.xml", - "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", - "ref/netcore50/it/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.encoding.extensions.4.3.0.nupkg.sha512", - "system.text.encoding.extensions.nuspec" - ] - }, - "System.Text.Encodings.Web/4.5.0": { - "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==", - "type": "package", - "path": "system.text.encodings.web/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/System.Text.Encodings.Web.dll", - "lib/netstandard1.0/System.Text.Encodings.Web.xml", - "lib/netstandard2.0/System.Text.Encodings.Web.dll", - "lib/netstandard2.0/System.Text.Encodings.Web.xml", - "system.text.encodings.web.4.5.0.nupkg.sha512", - "system.text.encodings.web.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Text.RegularExpressions/4.3.0": { - "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "type": "package", - "path": "system.text.regularexpressions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Text.RegularExpressions.dll", - "lib/netcore50/System.Text.RegularExpressions.dll", - "lib/netstandard1.6/System.Text.RegularExpressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.xml", - "ref/netcore50/de/System.Text.RegularExpressions.xml", - "ref/netcore50/es/System.Text.RegularExpressions.xml", - "ref/netcore50/fr/System.Text.RegularExpressions.xml", - "ref/netcore50/it/System.Text.RegularExpressions.xml", - "ref/netcore50/ja/System.Text.RegularExpressions.xml", - "ref/netcore50/ko/System.Text.RegularExpressions.xml", - "ref/netcore50/ru/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/System.Text.RegularExpressions.dll", - "ref/netstandard1.3/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/System.Text.RegularExpressions.dll", - "ref/netstandard1.6/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.regularexpressions.4.3.0.nupkg.sha512", - "system.text.regularexpressions.nuspec" - ] - }, - "System.Threading/4.3.0": { - "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "type": "package", - "path": "system.threading/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.dll", - "lib/netstandard1.3/System.Threading.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/netstandard1.0/System.Threading.dll", - "ref/netstandard1.0/System.Threading.xml", - "ref/netstandard1.0/de/System.Threading.xml", - "ref/netstandard1.0/es/System.Threading.xml", - "ref/netstandard1.0/fr/System.Threading.xml", - "ref/netstandard1.0/it/System.Threading.xml", - "ref/netstandard1.0/ja/System.Threading.xml", - "ref/netstandard1.0/ko/System.Threading.xml", - "ref/netstandard1.0/ru/System.Threading.xml", - "ref/netstandard1.0/zh-hans/System.Threading.xml", - "ref/netstandard1.0/zh-hant/System.Threading.xml", - "ref/netstandard1.3/System.Threading.dll", - "ref/netstandard1.3/System.Threading.xml", - "ref/netstandard1.3/de/System.Threading.xml", - "ref/netstandard1.3/es/System.Threading.xml", - "ref/netstandard1.3/fr/System.Threading.xml", - "ref/netstandard1.3/it/System.Threading.xml", - "ref/netstandard1.3/ja/System.Threading.xml", - "ref/netstandard1.3/ko/System.Threading.xml", - "ref/netstandard1.3/ru/System.Threading.xml", - "ref/netstandard1.3/zh-hans/System.Threading.xml", - "ref/netstandard1.3/zh-hant/System.Threading.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Threading.dll", - "system.threading.4.3.0.nupkg.sha512", - "system.threading.nuspec" - ] - }, - "System.Threading.Tasks/4.3.0": { - "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "type": "package", - "path": "system.threading.tasks/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.Tasks.dll", - "ref/netcore50/System.Threading.Tasks.xml", - "ref/netcore50/de/System.Threading.Tasks.xml", - "ref/netcore50/es/System.Threading.Tasks.xml", - "ref/netcore50/fr/System.Threading.Tasks.xml", - "ref/netcore50/it/System.Threading.Tasks.xml", - "ref/netcore50/ja/System.Threading.Tasks.xml", - "ref/netcore50/ko/System.Threading.Tasks.xml", - "ref/netcore50/ru/System.Threading.Tasks.xml", - "ref/netcore50/zh-hans/System.Threading.Tasks.xml", - "ref/netcore50/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.0/System.Threading.Tasks.dll", - "ref/netstandard1.0/System.Threading.Tasks.xml", - "ref/netstandard1.0/de/System.Threading.Tasks.xml", - "ref/netstandard1.0/es/System.Threading.Tasks.xml", - "ref/netstandard1.0/fr/System.Threading.Tasks.xml", - "ref/netstandard1.0/it/System.Threading.Tasks.xml", - "ref/netstandard1.0/ja/System.Threading.Tasks.xml", - "ref/netstandard1.0/ko/System.Threading.Tasks.xml", - "ref/netstandard1.0/ru/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.3/System.Threading.Tasks.dll", - "ref/netstandard1.3/System.Threading.Tasks.xml", - "ref/netstandard1.3/de/System.Threading.Tasks.xml", - "ref/netstandard1.3/es/System.Threading.Tasks.xml", - "ref/netstandard1.3/fr/System.Threading.Tasks.xml", - "ref/netstandard1.3/it/System.Threading.Tasks.xml", - "ref/netstandard1.3/ja/System.Threading.Tasks.xml", - "ref/netstandard1.3/ko/System.Threading.Tasks.xml", - "ref/netstandard1.3/ru/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.4.3.0.nupkg.sha512", - "system.threading.tasks.nuspec" - ] - }, - "System.Threading.Tasks.Extensions/4.5.1": { - "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", - "type": "package", - "path": "system.threading.tasks.extensions/4.5.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", - "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netcoreapp2.1/_._", - "ref/netstandard1.0/System.Threading.Tasks.Extensions.dll", - "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml", - "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll", - "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.extensions.4.5.1.nupkg.sha512", - "system.threading.tasks.extensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Threading.Tasks.Parallel/4.3.0": { - "sha512": "cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==", - "type": "package", - "path": "system.threading.tasks.parallel/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.Tasks.Parallel.dll", - "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.Tasks.Parallel.dll", - "ref/netcore50/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/de/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/es/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/it/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll", - "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.parallel.4.3.0.nupkg.sha512", - "system.threading.tasks.parallel.nuspec" - ] - }, - "System.Threading.Thread/4.3.0": { - "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", - "type": "package", - "path": "system.threading.thread/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Threading.Thread.dll", - "lib/netcore50/_._", - "lib/netstandard1.3/System.Threading.Thread.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Threading.Thread.dll", - "ref/netstandard1.3/System.Threading.Thread.dll", - "ref/netstandard1.3/System.Threading.Thread.xml", - "ref/netstandard1.3/de/System.Threading.Thread.xml", - "ref/netstandard1.3/es/System.Threading.Thread.xml", - "ref/netstandard1.3/fr/System.Threading.Thread.xml", - "ref/netstandard1.3/it/System.Threading.Thread.xml", - "ref/netstandard1.3/ja/System.Threading.Thread.xml", - "ref/netstandard1.3/ko/System.Threading.Thread.xml", - "ref/netstandard1.3/ru/System.Threading.Thread.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.thread.4.3.0.nupkg.sha512", - "system.threading.thread.nuspec" - ] - }, - "System.Threading.Timer/4.3.0": { - "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "type": "package", - "path": "system.threading.timer/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net451/_._", - "lib/portable-net451+win81+wpa81/_._", - "lib/win81/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net451/_._", - "ref/netcore50/System.Threading.Timer.dll", - "ref/netcore50/System.Threading.Timer.xml", - "ref/netcore50/de/System.Threading.Timer.xml", - "ref/netcore50/es/System.Threading.Timer.xml", - "ref/netcore50/fr/System.Threading.Timer.xml", - "ref/netcore50/it/System.Threading.Timer.xml", - "ref/netcore50/ja/System.Threading.Timer.xml", - "ref/netcore50/ko/System.Threading.Timer.xml", - "ref/netcore50/ru/System.Threading.Timer.xml", - "ref/netcore50/zh-hans/System.Threading.Timer.xml", - "ref/netcore50/zh-hant/System.Threading.Timer.xml", - "ref/netstandard1.2/System.Threading.Timer.dll", - "ref/netstandard1.2/System.Threading.Timer.xml", - "ref/netstandard1.2/de/System.Threading.Timer.xml", - "ref/netstandard1.2/es/System.Threading.Timer.xml", - "ref/netstandard1.2/fr/System.Threading.Timer.xml", - "ref/netstandard1.2/it/System.Threading.Timer.xml", - "ref/netstandard1.2/ja/System.Threading.Timer.xml", - "ref/netstandard1.2/ko/System.Threading.Timer.xml", - "ref/netstandard1.2/ru/System.Threading.Timer.xml", - "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", - "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", - "ref/portable-net451+win81+wpa81/_._", - "ref/win81/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.timer.4.3.0.nupkg.sha512", - "system.threading.timer.nuspec" - ] - }, - "System.ValueTuple/4.3.0": { - "sha512": "cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==", - "type": "package", - "path": "system.valuetuple/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/.xml", - "lib/netstandard1.0/System.ValueTuple.dll", - "lib/portable-net40+sl4+win8+wp8/.xml", - "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", - "system.valuetuple.4.3.0.nupkg.sha512", - "system.valuetuple.nuspec" - ] - }, - "System.Xml.ReaderWriter/4.3.0": { - "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "type": "package", - "path": "system.xml.readerwriter/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Xml.ReaderWriter.dll", - "lib/netcore50/System.Xml.ReaderWriter.dll", - "lib/netstandard1.3/System.Xml.ReaderWriter.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.xml", - "ref/netcore50/de/System.Xml.ReaderWriter.xml", - "ref/netcore50/es/System.Xml.ReaderWriter.xml", - "ref/netcore50/fr/System.Xml.ReaderWriter.xml", - "ref/netcore50/it/System.Xml.ReaderWriter.xml", - "ref/netcore50/ja/System.Xml.ReaderWriter.xml", - "ref/netcore50/ko/System.Xml.ReaderWriter.xml", - "ref/netcore50/ru/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/System.Xml.ReaderWriter.dll", - "ref/netstandard1.0/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/System.Xml.ReaderWriter.dll", - "ref/netstandard1.3/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.readerwriter.4.3.0.nupkg.sha512", - "system.xml.readerwriter.nuspec" - ] - }, - "System.Xml.XDocument/4.3.0": { - "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "type": "package", - "path": "system.xml.xdocument/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Xml.XDocument.dll", - "lib/netstandard1.3/System.Xml.XDocument.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Xml.XDocument.dll", - "ref/netcore50/System.Xml.XDocument.xml", - "ref/netcore50/de/System.Xml.XDocument.xml", - "ref/netcore50/es/System.Xml.XDocument.xml", - "ref/netcore50/fr/System.Xml.XDocument.xml", - "ref/netcore50/it/System.Xml.XDocument.xml", - "ref/netcore50/ja/System.Xml.XDocument.xml", - "ref/netcore50/ko/System.Xml.XDocument.xml", - "ref/netcore50/ru/System.Xml.XDocument.xml", - "ref/netcore50/zh-hans/System.Xml.XDocument.xml", - "ref/netcore50/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.0/System.Xml.XDocument.dll", - "ref/netstandard1.0/System.Xml.XDocument.xml", - "ref/netstandard1.0/de/System.Xml.XDocument.xml", - "ref/netstandard1.0/es/System.Xml.XDocument.xml", - "ref/netstandard1.0/fr/System.Xml.XDocument.xml", - "ref/netstandard1.0/it/System.Xml.XDocument.xml", - "ref/netstandard1.0/ja/System.Xml.XDocument.xml", - "ref/netstandard1.0/ko/System.Xml.XDocument.xml", - "ref/netstandard1.0/ru/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.3/System.Xml.XDocument.dll", - "ref/netstandard1.3/System.Xml.XDocument.xml", - "ref/netstandard1.3/de/System.Xml.XDocument.xml", - "ref/netstandard1.3/es/System.Xml.XDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XDocument.xml", - "ref/netstandard1.3/it/System.Xml.XDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xdocument.4.3.0.nupkg.sha512", - "system.xml.xdocument.nuspec" - ] - }, - "System.Xml.XmlDocument/4.3.0": { - "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "type": "package", - "path": "system.xml.xmldocument/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Xml.XmlDocument.dll", - "lib/netstandard1.3/System.Xml.XmlDocument.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Xml.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xmldocument.4.3.0.nupkg.sha512", - "system.xml.xmldocument.nuspec" - ] - }, - "System.Xml.XPath/4.3.0": { - "sha512": "v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "type": "package", - "path": "system.xml.xpath/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Xml.XPath.dll", - "lib/netstandard1.3/System.Xml.XPath.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Xml.XPath.dll", - "ref/netstandard1.3/System.Xml.XPath.dll", - "ref/netstandard1.3/System.Xml.XPath.xml", - "ref/netstandard1.3/de/System.Xml.XPath.xml", - "ref/netstandard1.3/es/System.Xml.XPath.xml", - "ref/netstandard1.3/fr/System.Xml.XPath.xml", - "ref/netstandard1.3/it/System.Xml.XPath.xml", - "ref/netstandard1.3/ja/System.Xml.XPath.xml", - "ref/netstandard1.3/ko/System.Xml.XPath.xml", - "ref/netstandard1.3/ru/System.Xml.XPath.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xpath.4.3.0.nupkg.sha512", - "system.xml.xpath.nuspec" - ] - }, - "System.Xml.XPath.XDocument/4.3.0": { - "sha512": "jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==", - "type": "package", - "path": "system.xml.xpath.xdocument/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Xml.XPath.XDocument.dll", - "lib/netstandard1.3/System.Xml.XPath.XDocument.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Xml.XPath.XDocument.dll", - "ref/netstandard1.3/System.Xml.XPath.XDocument.dll", - "ref/netstandard1.3/System.Xml.XPath.XDocument.xml", - "ref/netstandard1.3/de/System.Xml.XPath.XDocument.xml", - "ref/netstandard1.3/es/System.Xml.XPath.XDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XPath.XDocument.xml", - "ref/netstandard1.3/it/System.Xml.XPath.XDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XPath.XDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XPath.XDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XPath.XDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XPath.XDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XPath.XDocument.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xpath.xdocument.4.3.0.nupkg.sha512", - "system.xml.xpath.xdocument.nuspec" - ] - }, - "TimeZoneConverter/3.2.0": { - "sha512": "f0UpF9H+ylj3qjO/l2+Yt0R77FFR327efJwsoXAys6J1fSYFcQPrPVhaGVVWoN79+PVutj0qzj79kuhSPN70gA==", - "type": "package", - "path": "timezoneconverter/3.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net35/TimeZoneConverter.dll", - "lib/net35/TimeZoneConverter.xml", - "lib/net40/TimeZoneConverter.dll", - "lib/net40/TimeZoneConverter.xml", - "lib/net45/TimeZoneConverter.dll", - "lib/net45/TimeZoneConverter.xml", - "lib/net461/TimeZoneConverter.dll", - "lib/net461/TimeZoneConverter.xml", - "lib/net471/TimeZoneConverter.dll", - "lib/net471/TimeZoneConverter.xml", - "lib/netstandard1.1/TimeZoneConverter.dll", - "lib/netstandard1.1/TimeZoneConverter.xml", - "lib/netstandard1.3/TimeZoneConverter.dll", - "lib/netstandard1.3/TimeZoneConverter.xml", - "lib/netstandard2.0/TimeZoneConverter.dll", - "lib/netstandard2.0/TimeZoneConverter.xml", - "timezoneconverter.3.2.0.nupkg.sha512", - "timezoneconverter.nuspec" - ] - }, - "Volo.Abp.Auditing/4.0.0": { - "sha512": "VRZEAoAyHa6lsvcRNTpssykI4hpwVGfm9rz7rxG+G+GoeqwfN0I+3cGyB/CPcWPtMHMv8bQmavhF0Dhmz8GBKA==", - "type": "package", - "path": "volo.abp.auditing/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Auditing.dll", - "lib/netstandard2.0/Volo.Abp.Auditing.pdb", - "lib/netstandard2.0/Volo.Abp.Auditing.xml", - "volo.abp.auditing.4.0.0.nupkg.sha512", - "volo.abp.auditing.nuspec" - ] - }, - "Volo.Abp.Authorization/4.0.0": { - "sha512": "GJdwUW+r+ynbSl5WzeSRsSayB4dO6dRTPjykiccuVZiO/Jl5iooTDZe5kPcxihjbW6lcUTcsaU4/dUA1SabPfQ==", - "type": "package", - "path": "volo.abp.authorization/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Authorization.dll", - "lib/netstandard2.0/Volo.Abp.Authorization.pdb", - "lib/netstandard2.0/Volo.Abp.Authorization.xml", - "volo.abp.authorization.4.0.0.nupkg.sha512", - "volo.abp.authorization.nuspec" - ] - }, - "Volo.Abp.Caching/4.0.0": { - "sha512": "HPh42k8LcQXXyGh5UCeHHR1AZtDgJMpQ0QVagfM6X+sUZn7bC5yVwy0seS2QWT7UvyPotBjokOyr3FcD21oIwQ==", - "type": "package", - "path": "volo.abp.caching/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Caching.dll", - "lib/netstandard2.0/Volo.Abp.Caching.pdb", - "lib/netstandard2.0/Volo.Abp.Caching.xml", - "volo.abp.caching.4.0.0.nupkg.sha512", - "volo.abp.caching.nuspec" - ] - }, - "Volo.Abp.Core/4.0.0": { - "sha512": "ZMfrx0XAQB8hkQDr7yK7z+p9m48VmKxpEH0/B2k8QNK9/D+2CGa4pBJtwJfQocgm2lltI25NapgcIr5GG8bQJA==", - "type": "package", - "path": "volo.abp.core/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Core.dll", - "lib/netstandard2.0/Volo.Abp.Core.pdb", - "lib/netstandard2.0/Volo.Abp.Core.xml", - "volo.abp.core.4.0.0.nupkg.sha512", - "volo.abp.core.nuspec" - ] - }, - "Volo.Abp.Data/4.0.0": { - "sha512": "PlqtMln+f0g08ox/YiNWiJhlHdIJ6rUE3fKma9BX8er9m6Z0I8z1gwSQjixrfwERHovBcziYq7keXdXv3Vj/TQ==", - "type": "package", - "path": "volo.abp.data/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Data.dll", - "lib/netstandard2.0/Volo.Abp.Data.pdb", - "lib/netstandard2.0/Volo.Abp.Data.xml", - "volo.abp.data.4.0.0.nupkg.sha512", - "volo.abp.data.nuspec" - ] - }, - "Volo.Abp.Ddd.Application/4.0.0": { - "sha512": "xNEKr/1rTiwzgpvWf7LsVe7sGRlkPWlMuFSOlHVVsgluV4Fn8SveXeM7LyNshEyALyc1XpCRCKLa0Hev1ykhCA==", - "type": "package", - "path": "volo.abp.ddd.application/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll", - "lib/netstandard2.0/Volo.Abp.Ddd.Application.pdb", - "lib/netstandard2.0/Volo.Abp.Ddd.Application.xml", - "volo.abp.ddd.application.4.0.0.nupkg.sha512", - "volo.abp.ddd.application.nuspec" - ] - }, - "Volo.Abp.Ddd.Application.Contracts/4.0.0": { - "sha512": "GQx/FU1GLbU7ZPCqiX/5WfiWr7wIKXWzGv1rqqFHwNSaMsyUpjrkemlcFgNooV3h3WYhW0oI51Sb3TtLsgAchA==", - "type": "package", - "path": "volo.abp.ddd.application.contracts/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll", - "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.pdb", - "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.xml", - "volo.abp.ddd.application.contracts.4.0.0.nupkg.sha512", - "volo.abp.ddd.application.contracts.nuspec" - ] - }, - "Volo.Abp.Ddd.Domain/4.0.0": { - "sha512": "d9BXWIsNrRRcluevSCdIfzrLcLfRvyLfPdaDlYYLe5swY5NCk2GSTiwp7/LawjIQXibOfuPSn3JGSC+CywyKZw==", - "type": "package", - "path": "volo.abp.ddd.domain/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll", - "lib/netstandard2.0/Volo.Abp.Ddd.Domain.pdb", - "lib/netstandard2.0/Volo.Abp.Ddd.Domain.xml", - "volo.abp.ddd.domain.4.0.0.nupkg.sha512", - "volo.abp.ddd.domain.nuspec" - ] - }, - "Volo.Abp.EntityFrameworkCore/4.0.0": { - "sha512": "picD5026ix1kgNfMzUfCz4hRY/Su1d/xUdyWzhSnqU6kpEPZet7B4CQFLrtummhOjb6JED78mZs3NIWXh51jWQ==", - "type": "package", - "path": "volo.abp.entityframeworkcore/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.1/Volo.Abp.EntityFrameworkCore.dll", - "lib/netstandard2.1/Volo.Abp.EntityFrameworkCore.pdb", - "lib/netstandard2.1/Volo.Abp.EntityFrameworkCore.xml", - "volo.abp.entityframeworkcore.4.0.0.nupkg.sha512", - "volo.abp.entityframeworkcore.nuspec" - ] - }, - "Volo.Abp.EventBus/4.0.0": { - "sha512": "DXc35BniZPpe2pPKPvPxF53WrgFRHzIkdtgngxFS77B0OYXN7oIEeWy0QrOaI8q/JJGqQmPtErM4J5QQiVEapA==", - "type": "package", - "path": "volo.abp.eventbus/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.EventBus.dll", - "lib/netstandard2.0/Volo.Abp.EventBus.pdb", - "lib/netstandard2.0/Volo.Abp.EventBus.xml", - "volo.abp.eventbus.4.0.0.nupkg.sha512", - "volo.abp.eventbus.nuspec" - ] - }, - "Volo.Abp.ExceptionHandling/4.0.0": { - "sha512": "6dSqrIOYO/qAANf/uW68JOpN+iF1EXWD5Q66FGsQLXKAlfKD/+WVc+oIuA7TNhWVXN3ZjkRNScOwCbeg7eWmnw==", - "type": "package", - "path": "volo.abp.exceptionhandling/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll", - "lib/netstandard2.0/Volo.Abp.ExceptionHandling.pdb", - "lib/netstandard2.0/Volo.Abp.ExceptionHandling.xml", - "volo.abp.exceptionhandling.4.0.0.nupkg.sha512", - "volo.abp.exceptionhandling.nuspec" - ] - }, - "Volo.Abp.Features/4.0.0": { - "sha512": "ooCRJO0SR5/qraJuTv/W4BSLD79iSzOVvzkArrGCDynrChAE/O9Taszu05F3EeTMQ8WbwEGwdmCEup0+xtbjuA==", - "type": "package", - "path": "volo.abp.features/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Features.dll", - "lib/netstandard2.0/Volo.Abp.Features.pdb", - "lib/netstandard2.0/Volo.Abp.Features.xml", - "volo.abp.features.4.0.0.nupkg.sha512", - "volo.abp.features.nuspec" - ] - }, - "Volo.Abp.Guids/4.0.0": { - "sha512": "TBV0GetIbuFyQlOrVvt5UM+fAdp4XgkFm1YbLZXMcjOvcR1dT4c+p27EKbEpGZHt9M2sin9hYucUX3khi1xqEQ==", - "type": "package", - "path": "volo.abp.guids/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Guids.dll", - "lib/netstandard2.0/Volo.Abp.Guids.pdb", - "lib/netstandard2.0/Volo.Abp.Guids.xml", - "volo.abp.guids.4.0.0.nupkg.sha512", - "volo.abp.guids.nuspec" - ] - }, - "Volo.Abp.Http.Abstractions/4.0.0": { - "sha512": "3fbRUN9/Zpn5b/krwg3I3jrulSS1dMeoCqcmD22JYZfrntCXDCD8y6S20UW/ebJxar8xzDeyr2691yZls6KPLw==", - "type": "package", - "path": "volo.abp.http.abstractions/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll", - "lib/netstandard2.0/Volo.Abp.Http.Abstractions.pdb", - "lib/netstandard2.0/Volo.Abp.Http.Abstractions.xml", - "volo.abp.http.abstractions.4.0.0.nupkg.sha512", - "volo.abp.http.abstractions.nuspec" - ] - }, - "Volo.Abp.Json/4.0.0": { - "sha512": "eHIzwVX5Dovaa62SWozHK6S4Na4dSH0pPX36+hSDAuAhGkuDb8Tva7aCmI4xIZMyomUEBOjSlZCVRLsoRePQBQ==", - "type": "package", - "path": "volo.abp.json/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Json.dll", - "lib/netstandard2.0/Volo.Abp.Json.pdb", - "lib/netstandard2.0/Volo.Abp.Json.xml", - "volo.abp.json.4.0.0.nupkg.sha512", - "volo.abp.json.nuspec" - ] - }, - "Volo.Abp.Localization/4.0.0": { - "sha512": "iTF8SLF0mEsJY7A5F73T+vRilgfnPxuDyx7IBo6AwJf8e2Wun/cuXazbSsOUI/Se4+hAZM1p+Bsjl3i3StiMiQ==", - "type": "package", - "path": "volo.abp.localization/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Localization.dll", - "lib/netstandard2.0/Volo.Abp.Localization.pdb", - "lib/netstandard2.0/Volo.Abp.Localization.xml", - "volo.abp.localization.4.0.0.nupkg.sha512", - "volo.abp.localization.nuspec" - ] - }, - "Volo.Abp.Localization.Abstractions/4.0.0": { - "sha512": "x3zbNTb0Tz97DSg3o01N9/S8MnEBnkKz3plgyqJMsacRcfSJ332213xI/sEVeisrISStnkoUpzPCaDeelhJKew==", - "type": "package", - "path": "volo.abp.localization.abstractions/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll", - "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.pdb", - "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.xml", - "volo.abp.localization.abstractions.4.0.0.nupkg.sha512", - "volo.abp.localization.abstractions.nuspec" - ] - }, - "Volo.Abp.MultiTenancy/4.0.0": { - "sha512": "plYKNcUZRo4SDXwrp1zx4uOtgCvW9Std4YmHSFT39/1gEiuN1nLe4UdK6VX/n46Kr4ZMfolsXWLrJ7lQzA02Kg==", - "type": "package", - "path": "volo.abp.multitenancy/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll", - "lib/netstandard2.0/Volo.Abp.MultiTenancy.pdb", - "lib/netstandard2.0/Volo.Abp.MultiTenancy.xml", - "volo.abp.multitenancy.4.0.0.nupkg.sha512", - "volo.abp.multitenancy.nuspec" - ] - }, - "Volo.Abp.ObjectExtending/4.0.0": { - "sha512": "C97ThuvcrtzX1sNwjuNNSpCWqAMQ6RAtYT5r0fJsLuT3SxI1GVihgn6JrnIscFe+LcH/+jx1a55303NZCzo3uA==", - "type": "package", - "path": "volo.abp.objectextending/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll", - "lib/netstandard2.0/Volo.Abp.ObjectExtending.pdb", - "lib/netstandard2.0/Volo.Abp.ObjectExtending.xml", - "volo.abp.objectextending.4.0.0.nupkg.sha512", - "volo.abp.objectextending.nuspec" - ] - }, - "Volo.Abp.ObjectMapping/4.0.0": { - "sha512": "ZgoY9AumGPUmIUXcSlHE7e/zF7xCGXrVmgnH/cboAcrgjIo+77TCsgg1LC9VkuqCWHwdSqi6+SZz0oHT55v+Pg==", - "type": "package", - "path": "volo.abp.objectmapping/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll", - "lib/netstandard2.0/Volo.Abp.ObjectMapping.pdb", - "lib/netstandard2.0/Volo.Abp.ObjectMapping.xml", - "volo.abp.objectmapping.4.0.0.nupkg.sha512", - "volo.abp.objectmapping.nuspec" - ] - }, - "Volo.Abp.Security/4.0.0": { - "sha512": "FiSZwHCnytayzf9XGzeNfEjATWHBzu04kS6pBtEHA1zVd/RennPr4DV7HhesNkLlEFU0mChw84WBjbD6mD5kbA==", - "type": "package", - "path": "volo.abp.security/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Security.dll", - "lib/netstandard2.0/Volo.Abp.Security.pdb", - "lib/netstandard2.0/Volo.Abp.Security.xml", - "volo.abp.security.4.0.0.nupkg.sha512", - "volo.abp.security.nuspec" - ] - }, - "Volo.Abp.Serialization/4.0.0": { - "sha512": "H58jfpa6Pyjk1JZ988LWrX3NtEl1DhsOwGGqlOJ3EXimSBdLOYWk8PY7FbT8WFd6HpT4HKCGjyPtPAbldSTY8Q==", - "type": "package", - "path": "volo.abp.serialization/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Serialization.dll", - "lib/netstandard2.0/Volo.Abp.Serialization.pdb", - "lib/netstandard2.0/Volo.Abp.Serialization.xml", - "volo.abp.serialization.4.0.0.nupkg.sha512", - "volo.abp.serialization.nuspec" - ] - }, - "Volo.Abp.Settings/4.0.0": { - "sha512": "p58KFkAT4ITfdzdKr4iIFEJ9R3UJLhY1qV2RMkGmYDs4hGKFt6wnrfgg96XHKX7f4rCoqqj4bDsONhNBdaA6pg==", - "type": "package", - "path": "volo.abp.settings/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Settings.dll", - "lib/netstandard2.0/Volo.Abp.Settings.pdb", - "lib/netstandard2.0/Volo.Abp.Settings.xml", - "volo.abp.settings.4.0.0.nupkg.sha512", - "volo.abp.settings.nuspec" - ] - }, - "Volo.Abp.Specifications/4.0.0": { - "sha512": "yapfYZjoJ7xpWTFOgp0fNjWciu3jqCzZ8mPgMQT77CPZ4zjNoKR8TEkIi1ghfN9SrnEBRfmopJc8DWWge9nJHg==", - "type": "package", - "path": "volo.abp.specifications/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Specifications.dll", - "lib/netstandard2.0/Volo.Abp.Specifications.pdb", - "lib/netstandard2.0/Volo.Abp.Specifications.xml", - "volo.abp.specifications.4.0.0.nupkg.sha512", - "volo.abp.specifications.nuspec" - ] - }, - "Volo.Abp.Threading/4.0.0": { - "sha512": "KVaJu2X3kuODNRk/jQmhctkeaEpW/zYVNUMfuOF7Ep3HHdWNLG36OdgwIgqJa/Ew5SXQyNboGf3f2JXNr3TQ+Q==", - "type": "package", - "path": "volo.abp.threading/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Threading.dll", - "lib/netstandard2.0/Volo.Abp.Threading.pdb", - "lib/netstandard2.0/Volo.Abp.Threading.xml", - "volo.abp.threading.4.0.0.nupkg.sha512", - "volo.abp.threading.nuspec" - ] - }, - "Volo.Abp.Timing/4.0.0": { - "sha512": "jYKPGR5c57kFXhhseOmNigPdh7v+Weh3yIRZVy0C5mPVnAZcHwZOZKT4UwxvUZobEFItdv8Mt8Zo3L+bn57VGw==", - "type": "package", - "path": "volo.abp.timing/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Timing.dll", - "lib/netstandard2.0/Volo.Abp.Timing.pdb", - "lib/netstandard2.0/Volo.Abp.Timing.xml", - "volo.abp.timing.4.0.0.nupkg.sha512", - "volo.abp.timing.nuspec" - ] - }, - "Volo.Abp.Uow/4.0.0": { - "sha512": "vRIi8/nQSEX7HhZ21N9iAC1GaFAl87msL6lCIcyFvfzcbyfPbRvz9GxDZeB9ActkNM3afHo1741gI0uerK+RBQ==", - "type": "package", - "path": "volo.abp.uow/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Uow.dll", - "lib/netstandard2.0/Volo.Abp.Uow.pdb", - "lib/netstandard2.0/Volo.Abp.Uow.xml", - "volo.abp.uow.4.0.0.nupkg.sha512", - "volo.abp.uow.nuspec" - ] - }, - "Volo.Abp.Validation/4.0.0": { - "sha512": "Mi1Tk7D5zfyu2K1rxYBbv17FWeTnL7mfuf4u8+HzwE/iiECOBauH+SLRPDIma/SMS7a4Jefie2X6PyJaqd5egQ==", - "type": "package", - "path": "volo.abp.validation/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Validation.dll", - "lib/netstandard2.0/Volo.Abp.Validation.pdb", - "lib/netstandard2.0/Volo.Abp.Validation.xml", - "volo.abp.validation.4.0.0.nupkg.sha512", - "volo.abp.validation.nuspec" - ] - }, - "Volo.Abp.Validation.Abstractions/4.0.0": { - "sha512": "kdf8BMxCnXVk6p28GKjmoR/XMqbMSq7ybxqGa3eBhijSSXuMoi1O7bUiG8BEZwa/1URsJ856SO9hNLPu1Xwfcw==", - "type": "package", - "path": "volo.abp.validation.abstractions/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll", - "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.pdb", - "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.xml", - "volo.abp.validation.abstractions.4.0.0.nupkg.sha512", - "volo.abp.validation.abstractions.nuspec" - ] - }, - "Volo.Abp.VirtualFileSystem/4.0.0": { - "sha512": "MUu5cocwbFIi82rSBINdamSenGt0Tkond7anXMKeBx+bTwC1q8g98wwAC0Lif+MG1mVo7KyZk+uq/RxXYlLKQg==", - "type": "package", - "path": "volo.abp.virtualfilesystem/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll", - "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.pdb", - "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.xml", - "volo.abp.virtualfilesystem.4.0.0.nupkg.sha512", - "volo.abp.virtualfilesystem.nuspec" - ] - }, - "Win.Utils/2.0.0": { - "type": "project", - "path": "../Win.Utils/Win.Utils.csproj", - "msbuildProject": "../Win.Utils/Win.Utils.csproj" - } - }, - "projectFileDependencyGroups": { - "net5.0": [ - "Microsoft.AspNetCore.Mvc >= 2.2.0", - "Volo.Abp.Caching >= 4.0.0", - "Volo.Abp.Ddd.Application >= 4.0.0", - "Volo.Abp.Ddd.Application.Contracts >= 4.0.0", - "Volo.Abp.Ddd.Domain >= 4.0.0", - "Volo.Abp.EntityFrameworkCore >= 4.0.0", - "Win.Utils >= 2.0.0" - ] - }, - "packageFolders": { - "C:\\Users\\AIJXZ\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Sfs.Shared\\Win.Sfs.Shared.csproj", - "projectName": "Win.Sfs.Shared", - "projectPath": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Sfs.Shared\\Win.Sfs.Shared.csproj", - "packagesPath": "C:\\Users\\AIJXZ\\.nuget\\packages\\", - "outputPath": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Sfs.Shared\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\AIJXZ\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp5" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "netcoreapp5", - "projectReferences": { - "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Utils\\Win.Utils.csproj": { - "projectPath": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Utils\\Win.Utils.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "netcoreapp5", - "dependencies": { - "Microsoft.AspNetCore.Mvc": { - "target": "Package", - "version": "[2.2.0, )" - }, - "Volo.Abp.Caching": { - "target": "Package", - "version": "[4.0.0, )" - }, - "Volo.Abp.Ddd.Application": { - "target": "Package", - "version": "[4.0.0, )" - }, - "Volo.Abp.Ddd.Application.Contracts": { - "target": "Package", - "version": "[4.0.0, )" - }, - "Volo.Abp.Ddd.Domain": { - "target": "Package", - "version": "[4.0.0, )" - }, - "Volo.Abp.EntityFrameworkCore": { - "target": "Package", - "version": "[4.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[5.0.0, 5.0.0]" - }, - { - "name": "Microsoft.NETCore.App.Ref", - "version": "[5.0.0, 5.0.0]" - }, - { - "name": "Microsoft.WindowsDesktop.App.Ref", - "version": "[5.0.0, 5.0.0]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.304\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/code/src/Shared/Win.Sfs.Shared/obj/project.nuget.cache b/code/src/Shared/Win.Sfs.Shared/obj/project.nuget.cache deleted file mode 100644 index bd11f7f0..00000000 --- a/code/src/Shared/Win.Sfs.Shared/obj/project.nuget.cache +++ /dev/null @@ -1,242 +0,0 @@ -{ - "version": 2, -<<<<<<< HEAD - "dgSpecHash": "juXrL2mGZYX6s8pTxI6G0h7O1GH6Nckm6muKMrxEeCehmhryhwv8DbONr7KS08JqwbFf8yLvcAZnkaZ2UakS+A==", -======= - "dgSpecHash": "YxWkVDyhWFjf95al3WbSvLTD3Pa1UMd4u6VwOz5Yl6lkiH07Mi9tVwVsezzQ58LB8GI+hIKMra10XjH1QN894g==", ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 - "success": true, - "projectFilePath": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Sfs.Shared\\Win.Sfs.Shared.csproj", - "expectedPackageFiles": [ - "C:\\Users\\AIJXZ\\.nuget\\packages\\jetbrains.annotations\\2020.1.0\\jetbrains.annotations.2020.1.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.antiforgery\\2.2.0\\microsoft.aspnetcore.antiforgery.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.authentication.abstractions\\2.2.0\\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.authentication.core\\2.2.0\\microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.authorization\\5.0.0\\microsoft.aspnetcore.authorization.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.authorization.policy\\2.2.0\\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.cors\\2.2.0\\microsoft.aspnetcore.cors.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\2.2.0\\microsoft.aspnetcore.cryptography.internal.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.dataprotection\\2.2.0\\microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.dataprotection.abstractions\\2.2.0\\microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.diagnostics.abstractions\\2.2.0\\microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.hosting.server.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.html.abstractions\\2.2.0\\microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.http\\2.2.0\\microsoft.aspnetcore.http.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.jsonpatch\\2.2.0\\microsoft.aspnetcore.jsonpatch.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.localization\\2.2.0\\microsoft.aspnetcore.localization.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.metadata\\5.0.0\\microsoft.aspnetcore.metadata.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.mvc\\2.2.0\\microsoft.aspnetcore.mvc.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.mvc.abstractions\\2.2.0\\microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.mvc.analyzers\\2.2.0\\microsoft.aspnetcore.mvc.analyzers.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.mvc.apiexplorer\\2.2.0\\microsoft.aspnetcore.mvc.apiexplorer.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.mvc.core\\2.2.0\\microsoft.aspnetcore.mvc.core.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.mvc.cors\\2.2.0\\microsoft.aspnetcore.mvc.cors.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.mvc.dataannotations\\2.2.0\\microsoft.aspnetcore.mvc.dataannotations.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.mvc.formatters.json\\2.2.0\\microsoft.aspnetcore.mvc.formatters.json.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.mvc.localization\\2.2.0\\microsoft.aspnetcore.mvc.localization.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor\\2.2.0\\microsoft.aspnetcore.mvc.razor.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.extensions\\2.2.0\\microsoft.aspnetcore.mvc.razor.extensions.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.mvc.razorpages\\2.2.0\\microsoft.aspnetcore.mvc.razorpages.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.mvc.taghelpers\\2.2.0\\microsoft.aspnetcore.mvc.taghelpers.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.mvc.viewfeatures\\2.2.0\\microsoft.aspnetcore.mvc.viewfeatures.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.razor\\2.2.0\\microsoft.aspnetcore.razor.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.razor.design\\2.2.0\\microsoft.aspnetcore.razor.design.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\2.2.0\\microsoft.aspnetcore.razor.language.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.razor.runtime\\2.2.0\\microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.responsecaching.abstractions\\2.2.0\\microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.2.0\\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.2.0\\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\1.1.0\\microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.codeanalysis.common\\2.8.0\\microsoft.codeanalysis.common.2.8.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.codeanalysis.csharp\\2.8.0\\microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.codeanalysis.razor\\2.2.0\\microsoft.codeanalysis.razor.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.dotnet.platformabstractions\\2.1.0\\microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.0\\microsoft.entityframeworkcore.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.0\\microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.0\\microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.0\\microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration\\5.0.0\\microsoft.extensions.configuration.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.binder\\5.0.0\\microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\5.0.0\\microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\5.0.0\\microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\5.0.0\\microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.json\\5.0.0\\microsoft.extensions.configuration.json.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\5.0.0\\microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.dependencymodel\\2.1.0\\microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\5.0.0\\microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.fileproviders.composite\\5.0.0\\microsoft.extensions.fileproviders.composite.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.fileproviders.embedded\\5.0.0\\microsoft.extensions.fileproviders.embedded.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\5.0.0\\microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\5.0.0\\microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\5.0.0\\microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.localization\\5.0.0\\microsoft.extensions.localization.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\5.0.0\\microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.objectpool\\2.2.0\\microsoft.extensions.objectpool.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\5.0.0\\microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.webencoders\\2.2.0\\microsoft.extensions.webencoders.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.win32.registry\\4.5.0\\microsoft.win32.registry.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.win32.systemevents\\4.5.0\\microsoft.win32.systemevents.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\newtonsoft.json.bson\\1.0.1\\newtonsoft.json.bson.1.0.1.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\nito.asyncex.context\\5.0.0\\nito.asyncex.context.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\nito.asyncex.coordination\\5.0.0\\nito.asyncex.coordination.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\nito.asyncex.tasks\\5.0.0\\nito.asyncex.tasks.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\nito.collections.deque\\1.0.4\\nito.collections.deque.1.0.4.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\nito.disposables\\2.0.0\\nito.disposables.2.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\npoi\\2.5.2\\npoi.2.5.2.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\portable.bouncycastle\\1.8.6\\portable.bouncycastle.1.8.6.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\sharpziplib\\1.2.0\\sharpziplib.1.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\5.6.3\\swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\5.6.3\\swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.0\\system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.diagnostics.fileversioninfo\\4.3.0\\system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.diagnostics.stacktrace\\4.3.0\\system.diagnostics.stacktrace.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.linq.dynamic.core\\1.1.5\\system.linq.dynamic.core.1.1.5.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.linq.queryable\\4.3.0\\system.linq.queryable.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.metadata\\1.4.2\\system.reflection.metadata.1.4.2.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.security.cryptography.pkcs\\4.5.0\\system.security.cryptography.pkcs.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.security.cryptography.xml\\4.5.0\\system.security.cryptography.xml.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.text.encoding.codepages\\4.3.0\\system.text.encoding.codepages.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.text.encodings.web\\4.5.0\\system.text.encodings.web.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.1\\system.threading.tasks.extensions.4.5.1.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.threading.tasks.parallel\\4.3.0\\system.threading.tasks.parallel.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.threading.thread\\4.3.0\\system.threading.thread.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.valuetuple\\4.3.0\\system.valuetuple.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.xml.xpath\\4.3.0\\system.xml.xpath.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.xml.xpath.xdocument\\4.3.0\\system.xml.xpath.xdocument.4.3.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\timezoneconverter\\3.2.0\\timezoneconverter.3.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.auditing\\4.0.0\\volo.abp.auditing.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.authorization\\4.0.0\\volo.abp.authorization.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.caching\\4.0.0\\volo.abp.caching.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.core\\4.0.0\\volo.abp.core.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.data\\4.0.0\\volo.abp.data.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.ddd.application\\4.0.0\\volo.abp.ddd.application.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.ddd.application.contracts\\4.0.0\\volo.abp.ddd.application.contracts.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.ddd.domain\\4.0.0\\volo.abp.ddd.domain.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.entityframeworkcore\\4.0.0\\volo.abp.entityframeworkcore.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.eventbus\\4.0.0\\volo.abp.eventbus.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.exceptionhandling\\4.0.0\\volo.abp.exceptionhandling.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.features\\4.0.0\\volo.abp.features.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.guids\\4.0.0\\volo.abp.guids.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.http.abstractions\\4.0.0\\volo.abp.http.abstractions.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.json\\4.0.0\\volo.abp.json.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.localization\\4.0.0\\volo.abp.localization.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.localization.abstractions\\4.0.0\\volo.abp.localization.abstractions.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.multitenancy\\4.0.0\\volo.abp.multitenancy.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.objectextending\\4.0.0\\volo.abp.objectextending.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.objectmapping\\4.0.0\\volo.abp.objectmapping.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.security\\4.0.0\\volo.abp.security.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.serialization\\4.0.0\\volo.abp.serialization.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.settings\\4.0.0\\volo.abp.settings.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.specifications\\4.0.0\\volo.abp.specifications.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.threading\\4.0.0\\volo.abp.threading.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.timing\\4.0.0\\volo.abp.timing.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.uow\\4.0.0\\volo.abp.uow.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.validation\\4.0.0\\volo.abp.validation.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.validation.abstractions\\4.0.0\\volo.abp.validation.abstractions.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.virtualfilesystem\\4.0.0\\volo.abp.virtualfilesystem.4.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\5.0.0\\microsoft.windowsdesktop.app.ref.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.netcore.app.ref\\5.0.0\\microsoft.netcore.app.ref.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.app.ref\\5.0.0\\microsoft.aspnetcore.app.ref.5.0.0.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/code/src/Shared/Win.Utils/bin/Debug/Win.Utils.2.0.0.nupkg b/code/src/Shared/Win.Utils/bin/Debug/Win.Utils.2.0.0.nupkg deleted file mode 100644 index 5c052117d3555faf53a1945bbb08c9ad54bd1154..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6543 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 P%*V&?QKegozux`_?R6>q diff --git a/code/src/Shared/Win.Utils/bin/Debug/netcoreapp5/Win.Utils.deps.json b/code/src/Shared/Win.Utils/bin/Debug/netcoreapp5/Win.Utils.deps.json deleted file mode 100644 index 66e6ccc8..00000000 --- a/code/src/Shared/Win.Utils/bin/Debug/netcoreapp5/Win.Utils.deps.json +++ /dev/null @@ -1,253 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v5.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v5.0": { - "Win.Utils/2.0.0": { - "dependencies": { - "NPOI": "2.5.2", - "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3" - }, - "runtime": { - "Win.Utils.dll": {} - } - }, - "Microsoft.NETCore.Platforms/2.0.0": {}, - "Microsoft.OpenApi/1.2.3": { - "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "assemblyVersion": "1.2.3.0", - "fileVersion": "1.2.3.0" - } - } - }, - "Microsoft.Win32.SystemEvents/4.5.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "2.0.0" - } - }, - "NPOI/2.5.2": { - "dependencies": { - "Portable.BouncyCastle": "1.8.6", - "SharpZipLib": "1.2.0", - "System.Configuration.ConfigurationManager": "4.5.0", - "System.Drawing.Common": "4.5.0" - }, - "runtime": { - "lib/netstandard2.1/NPOI.OOXML.dll": { - "assemblyVersion": "2.5.2.0", - "fileVersion": "2.5.2.0" - }, - "lib/netstandard2.1/NPOI.OpenXml4Net.dll": { - "assemblyVersion": "2.5.2.0", - "fileVersion": "2.5.2.0" - }, - "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": { - "assemblyVersion": "2.5.2.0", - "fileVersion": "2.5.2.0" - }, - "lib/netstandard2.1/NPOI.dll": { - "assemblyVersion": "2.5.2.0", - "fileVersion": "2.5.2.0" - } - } - }, - "Portable.BouncyCastle/1.8.6": { - "runtime": { - "lib/netstandard2.0/BouncyCastle.Crypto.dll": { - "assemblyVersion": "1.8.6.0", - "fileVersion": "1.8.6.1" - } - } - }, - "SharpZipLib/1.2.0": { - "runtime": { - "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": { - "assemblyVersion": "1.2.0.246", - "fileVersion": "1.2.0.246" - } - } - }, - "Swashbuckle.AspNetCore.Swagger/5.6.3": { - "dependencies": { - "Microsoft.OpenApi": "1.2.3" - }, - "runtime": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": { - "assemblyVersion": "5.6.3.0", - "fileVersion": "5.6.3.0" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "5.6.3" - }, - "runtime": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "assemblyVersion": "5.6.3.0", - "fileVersion": "5.6.3.0" - } - } - }, - "System.Configuration.ConfigurationManager/4.5.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "4.5.0", - "System.Security.Permissions": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.26515.6" - } - } - }, - "System.Drawing.Common/4.5.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "2.0.0", - "Microsoft.Win32.SystemEvents": "4.5.0" - } - }, - "System.Security.AccessControl/4.5.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "2.0.0", - "System.Security.Principal.Windows": "4.5.0" - } - }, - "System.Security.Cryptography.ProtectedData/4.5.0": { - "runtime": { - "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.6.26515.6" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.6.26515.6" - } - } - }, - "System.Security.Permissions/4.5.0": { - "dependencies": { - "System.Security.AccessControl": "4.5.0" - } - }, - "System.Security.Principal.Windows/4.5.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "2.0.0" - } - } - } - }, - "libraries": { - "Win.Utils/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.NETCore.Platforms/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", - "path": "microsoft.netcore.platforms/2.0.0", - "hashPath": "microsoft.netcore.platforms.2.0.0.nupkg.sha512" - }, - "Microsoft.OpenApi/1.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", - "path": "microsoft.openapi/1.2.3", - "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LuI1oG+24TUj1ZRQQjM5Ew73BKnZE5NZ/7eAdh1o8ST5dPhUnJvIkiIn2re3MwnkRy6ELRnvEbBxHP8uALKhJw==", - "path": "microsoft.win32.systemevents/4.5.0", - "hashPath": "microsoft.win32.systemevents.4.5.0.nupkg.sha512" - }, - "NPOI/2.5.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UNKwT9LX/9TFsEPLUebhdS9IHpQdg33s0eRpkEt/cnNU1O/ioOFnLebEMpaPuiW7efahu6SDCxBJLh5NmXksOw==", - "path": "npoi/2.5.2", - "hashPath": "npoi.2.5.2.nupkg.sha512" - }, - "Portable.BouncyCastle/1.8.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-y+GvZomzhY+Lwu5mMeNmFFYLHiEr2xFDOANhABn/wgg64/QpTzfgpNGPct+pXgQHjmutd363ZCur/91DLaBxOw==", - "path": "portable.bouncycastle/1.8.6", - "hashPath": "portable.bouncycastle.1.8.6.nupkg.sha512" - }, - "SharpZipLib/1.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==", - "path": "sharpziplib/1.2.0", - "hashPath": "sharpziplib.1.2.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.Swagger/5.6.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==", - "path": "swashbuckle.aspnetcore.swagger/5.6.3", - "hashPath": "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==", - "path": "swashbuckle.aspnetcore.swaggergen/5.6.3", - "hashPath": "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==", - "path": "system.configuration.configurationmanager/4.5.0", - "hashPath": "system.configuration.configurationmanager.4.5.0.nupkg.sha512" - }, - "System.Drawing.Common/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AiJFxxVPdeITstiRS5aAu8+8Dpf5NawTMoapZ53Gfirml24p7HIfhjmCRxdXnmmf3IUA3AX3CcW7G73CjWxW/Q==", - "path": "system.drawing.common/4.5.0", - "hashPath": "system.drawing.common.4.5.0.nupkg.sha512" - }, - "System.Security.AccessControl/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", - "path": "system.security.accesscontrol/4.5.0", - "hashPath": "system.security.accesscontrol.4.5.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==", - "path": "system.security.cryptography.protecteddata/4.5.0", - "hashPath": "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512" - }, - "System.Security.Permissions/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", - "path": "system.security.permissions/4.5.0", - "hashPath": "system.security.permissions.4.5.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", - "path": "system.security.principal.windows/4.5.0", - "hashPath": "system.security.principal.windows.4.5.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/code/src/Shared/Win.Utils/bin/Debug/netcoreapp5/Win.Utils.dll b/code/src/Shared/Win.Utils/bin/Debug/netcoreapp5/Win.Utils.dll deleted file mode 100644 index e5a978b72230637d3f99d6b070482edb5e993f21..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10752 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 diff --git a/code/src/Shared/Win.Utils/bin/Debug/netcoreapp5/Win.Utils.pdb b/code/src/Shared/Win.Utils/bin/Debug/netcoreapp5/Win.Utils.pdb deleted file mode 100644 index aa15f20eb1f77c3ac88948a118974400c62c4255..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 21764 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 diff --git a/code/src/Shared/Win.Utils/bin/Release/Win.Utils.2.0.0.nupkg b/code/src/Shared/Win.Utils/bin/Release/Win.Utils.2.0.0.nupkg deleted file mode 100644 index e495540225b2e3e16dad229329932d01c47d147b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6315 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 diff --git a/code/src/Shared/Win.Utils/bin/Release/netcoreapp5/Win.Utils.pdb b/code/src/Shared/Win.Utils/bin/Release/netcoreapp5/Win.Utils.pdb deleted file mode 100644 index 14932909dc976788f502df6cc349ac1f2de1bf10..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 21336 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 - - - Win.Utils - 2.0.0 - Win.Utils - Package Description - - - - - - - - - - - \ No newline at end of file diff --git a/code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs deleted file mode 100644 index 3b1554c7..00000000 --- a/code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] diff --git a/code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.AssemblyInfo.cs b/code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.AssemblyInfo.cs deleted file mode 100644 index 64b710c0..00000000 --- a/code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 -// -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Win.Utils")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("2.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Win.Utils")] -[assembly: System.Reflection.AssemblyTitleAttribute("Win.Utils")] -[assembly: System.Reflection.AssemblyVersionAttribute("2.0.0.0")] - -// 由 MSBuild WriteCodeFragment 类生成。 - diff --git a/code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.AssemblyInfoInputs.cache b/code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.AssemblyInfoInputs.cache deleted file mode 100644 index 7df187dc..00000000 --- a/code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -cfe4cd23d7665aabef490a9d3c97dcc15107725f diff --git a/code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.GeneratedMSBuildEditorConfig.editorconfig b/code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 70f70bdd..00000000 --- a/code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,11 +0,0 @@ -is_global = true -build_property.TargetFramework = netcoreapp5 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Win.Utils -build_property.ProjectDir = D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Utils\ diff --git a/code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.assets.cache b/code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.assets.cache deleted file mode 100644 index b86424896699c4b41e24465dff64adf5e3895df6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11670 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 WJgCQxKDPviVlWu9kTGU4Bl!dX1$N~C diff --git a/code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.dll b/code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.dll deleted file mode 100644 index e5a978b72230637d3f99d6b070482edb5e993f21..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10752 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 diff --git a/code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.pdb b/code/src/Shared/Win.Utils/obj/Debug/netcoreapp5/Win.Utils.pdb deleted file mode 100644 index aa15f20eb1f77c3ac88948a118974400c62c4255..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 21764 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 - - - Win.Utils - 2.0.0 - Win.Utils - Package Description - - - - - - - - -<<<<<<< HEAD - -======= - ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 - - \ No newline at end of file diff --git a/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs deleted file mode 100644 index 3b1554c7..00000000 --- a/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] diff --git a/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.AssemblyInfo.cs b/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.AssemblyInfo.cs deleted file mode 100644 index ea8cb24b..00000000 --- a/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 -// -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Win.Utils")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("2.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Win.Utils")] -[assembly: System.Reflection.AssemblyTitleAttribute("Win.Utils")] -[assembly: System.Reflection.AssemblyVersionAttribute("2.0.0.0")] - -// 由 MSBuild WriteCodeFragment 类生成。 - diff --git a/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.AssemblyInfoInputs.cache b/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.AssemblyInfoInputs.cache deleted file mode 100644 index 18088942..00000000 --- a/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -71ba453e9ece0d99c98a17434dd50ae94792dc4d diff --git a/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.GeneratedMSBuildEditorConfig.editorconfig b/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 734f1997..00000000 --- a/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,15 +0,0 @@ -is_global = true -build_property.TargetFramework = netcoreapp5 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Win.Utils -<<<<<<< HEAD -build_property.ProjectDir = D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Utils\ -======= -build_property.ProjectDir = D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Utils\ ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 diff --git a/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.assets.cache b/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.assets.cache deleted file mode 100644 index 3ca838de5d780c3b94d837e3dd87ba84b8b9dcd6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11646 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 VxJm^^E5GbmovT6}Knh^R{txvND!~8% diff --git a/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.csproj.CoreCompileInputs.cache b/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.csproj.CoreCompileInputs.cache deleted file mode 100644 index c2095410..00000000 --- a/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1,5 +0,0 @@ -<<<<<<< HEAD -fae5eb3acd0d3248e6bebd7afd673170a9c546d0 -======= -2677542b53154846c4624028c80c73e68df285b6 ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 diff --git a/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.csproj.FileListAbsolute.txt b/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.csproj.FileListAbsolute.txt deleted file mode 100644 index 681a8e5f..00000000 --- a/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,51 +0,0 @@ -G:\TIANHE\src\Shared\Win.Utils\bin\Release\netcoreapp5\Win.Utils.deps.json -G:\TIANHE\src\Shared\Win.Utils\bin\Release\netcoreapp5\Win.Utils.dll -G:\TIANHE\src\Shared\Win.Utils\bin\Release\netcoreapp5\ref\Win.Utils.dll -G:\TIANHE\src\Shared\Win.Utils\bin\Release\netcoreapp5\Win.Utils.pdb -G:\TIANHE\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.csproj.AssemblyReference.cache -G:\TIANHE\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.GeneratedMSBuildEditorConfig.editorconfig -G:\TIANHE\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.AssemblyInfoInputs.cache -G:\TIANHE\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.AssemblyInfo.cs -G:\TIANHE\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.csproj.CoreCompileInputs.cache -G:\TIANHE\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.dll -G:\TIANHE\src\Shared\Win.Utils\obj\Release\netcoreapp5\ref\Win.Utils.dll -G:\TIANHE\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.pdb -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Utils\bin\Release\netcoreapp5\Win.Utils.deps.json -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Utils\bin\Release\netcoreapp5\Win.Utils.dll -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Utils\bin\Release\netcoreapp5\ref\Win.Utils.dll -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Utils\bin\Release\netcoreapp5\Win.Utils.pdb -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.csproj.AssemblyReference.cache -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.AssemblyInfoInputs.cache -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.AssemblyInfo.cs -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.csproj.CoreCompileInputs.cache -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.dll -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Utils\obj\Release\netcoreapp5\ref\Win.Utils.dll -C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.pdb -<<<<<<< HEAD -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Utils\bin\Release\netcoreapp5\Win.Utils.deps.json -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Utils\bin\Release\netcoreapp5\Win.Utils.dll -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Utils\bin\Release\netcoreapp5\Win.Utils.pdb -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.csproj.AssemblyReference.cache -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.GeneratedMSBuildEditorConfig.editorconfig -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.AssemblyInfoInputs.cache -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.AssemblyInfo.cs -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.csproj.CoreCompileInputs.cache -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.dll -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Utils\obj\Release\netcoreapp5\refint\Win.Utils.dll -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.pdb -D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Utils\obj\Release\netcoreapp5\ref\Win.Utils.dll -======= -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Utils\bin\Release\netcoreapp5\Win.Utils.deps.json -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Utils\bin\Release\netcoreapp5\Win.Utils.dll -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Utils\bin\Release\netcoreapp5\Win.Utils.pdb -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.csproj.AssemblyReference.cache -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.GeneratedMSBuildEditorConfig.editorconfig -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.AssemblyInfoInputs.cache -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.AssemblyInfo.cs -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.csproj.CoreCompileInputs.cache -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.dll -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Utils\obj\Release\netcoreapp5\refint\Win.Utils.dll -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Utils\obj\Release\netcoreapp5\Win.Utils.pdb -D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Utils\obj\Release\netcoreapp5\ref\Win.Utils.dll ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 diff --git a/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.dll b/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.dll deleted file mode 100644 index 5afe9ebfecc5b3f9f10e3dcadfb96eab19aaef53..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10240 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 diff --git a/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.pdb b/code/src/Shared/Win.Utils/obj/Release/netcoreapp5/Win.Utils.pdb deleted file mode 100644 index 14932909dc976788f502df6cc349ac1f2de1bf10..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 21336 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 - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\AIJXZ\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.6.0 - - - - - - \ No newline at end of file diff --git a/code/src/Shared/Win.Utils/obj/Win.Utils.csproj.nuget.g.targets b/code/src/Shared/Win.Utils/obj/Win.Utils.csproj.nuget.g.targets deleted file mode 100644 index 3dc06ef3..00000000 --- a/code/src/Shared/Win.Utils/obj/Win.Utils.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/code/src/Shared/Win.Utils/obj/project.assets.json b/code/src/Shared/Win.Utils/obj/project.assets.json deleted file mode 100644 index 763239fb..00000000 --- a/code/src/Shared/Win.Utils/obj/project.assets.json +++ /dev/null @@ -1,712 +0,0 @@ -{ - "version": 3, - "targets": { - "net5.0": { - "Microsoft.NETCore.Platforms/2.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.OpenApi/1.2.3": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.Win32.SystemEvents/4.5.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "2.0.0" - }, - "compile": { - "ref/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "NPOI/2.5.2": { - "type": "package", - "dependencies": { - "Portable.BouncyCastle": "1.8.6", - "SharpZipLib": "1.2.0", - "System.Configuration.ConfigurationManager": "4.5.0", - "System.Drawing.Common": "4.5.0" - }, - "compile": { - "lib/netstandard2.1/NPOI.OOXML.dll": { - "related": ".XML" - }, - "lib/netstandard2.1/NPOI.OpenXml4Net.dll": { - "related": ".XML" - }, - "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {}, - "lib/netstandard2.1/NPOI.dll": { - "related": ".OOXML.XML;.OpenXml4Net.XML;.XML" - } - }, - "runtime": { - "lib/netstandard2.1/NPOI.OOXML.dll": { - "related": ".XML" - }, - "lib/netstandard2.1/NPOI.OpenXml4Net.dll": { - "related": ".XML" - }, - "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {}, - "lib/netstandard2.1/NPOI.dll": { - "related": ".OOXML.XML;.OpenXml4Net.XML;.XML" - } - } - }, - "Portable.BouncyCastle/1.8.6": { - "type": "package", - "compile": { - "lib/netstandard2.0/BouncyCastle.Crypto.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/BouncyCastle.Crypto.dll": { - "related": ".xml" - } - } - }, - "SharpZipLib/1.2.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": { - "related": ".pdb;.xml" - } - } - }, - "Swashbuckle.AspNetCore.Swagger/5.6.3": { - "type": "package", - "dependencies": { - "Microsoft.OpenApi": "1.2.3" - }, - "compile": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": { - "related": ".pdb;.xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": { - "type": "package", - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "5.6.3" - }, - "compile": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "related": ".pdb;.xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "System.Configuration.ConfigurationManager/4.5.0": { - "type": "package", - "dependencies": { - "System.Security.Cryptography.ProtectedData": "4.5.0", - "System.Security.Permissions": "4.5.0" - }, - "compile": { - "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} - } - }, - "System.Drawing.Common/4.5.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "2.0.0", - "Microsoft.Win32.SystemEvents": "4.5.0" - }, - "compile": { - "ref/netstandard2.0/System.Drawing.Common.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Drawing.Common.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.AccessControl/4.5.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "2.0.0", - "System.Security.Principal.Windows": "4.5.0" - }, - "compile": { - "ref/netstandard2.0/System.Security.AccessControl.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.AccessControl.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.ProtectedData/4.5.0": { - "type": "package", - "compile": { - "ref/netstandard2.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Permissions/4.5.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "4.5.0" - }, - "compile": { - "ref/netstandard2.0/System.Security.Permissions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.Permissions.dll": {} - } - }, - "System.Security.Principal.Windows/4.5.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "2.0.0" - }, - "compile": { - "ref/netstandard2.0/System.Security.Principal.Windows.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "win" - } - } - } - } - }, - "libraries": { - "Microsoft.NETCore.Platforms/2.0.0": { - "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", - "type": "package", - "path": "microsoft.netcore.platforms/2.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.2.0.0.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.OpenApi/1.2.3": { - "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", - "type": "package", - "path": "microsoft.openapi/1.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net46/Microsoft.OpenApi.dll", - "lib/net46/Microsoft.OpenApi.pdb", - "lib/net46/Microsoft.OpenApi.xml", - "lib/netstandard2.0/Microsoft.OpenApi.dll", - "lib/netstandard2.0/Microsoft.OpenApi.pdb", - "lib/netstandard2.0/Microsoft.OpenApi.xml", - "microsoft.openapi.1.2.3.nupkg.sha512", - "microsoft.openapi.nuspec" - ] - }, - "Microsoft.Win32.SystemEvents/4.5.0": { - "sha512": "LuI1oG+24TUj1ZRQQjM5Ew73BKnZE5NZ/7eAdh1o8ST5dPhUnJvIkiIn2re3MwnkRy6ELRnvEbBxHP8uALKhJw==", - "type": "package", - "path": "microsoft.win32.systemevents/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Win32.SystemEvents.dll", - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", - "microsoft.win32.systemevents.4.5.0.nupkg.sha512", - "microsoft.win32.systemevents.nuspec", - "ref/net461/Microsoft.Win32.SystemEvents.dll", - "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", - "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "NPOI/2.5.2": { - "sha512": "UNKwT9LX/9TFsEPLUebhdS9IHpQdg33s0eRpkEt/cnNU1O/ioOFnLebEMpaPuiW7efahu6SDCxBJLh5NmXksOw==", - "type": "package", - "path": "npoi/2.5.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE", - "Read Me.txt", - "lib/net45/NPOI.OOXML.XML", - "lib/net45/NPOI.OOXML.dll", - "lib/net45/NPOI.OpenXml4Net.XML", - "lib/net45/NPOI.OpenXml4Net.dll", - "lib/net45/NPOI.OpenXmlFormats.dll", - "lib/net45/NPOI.XML", - "lib/net45/NPOI.dll", - "lib/netstandard2.0/NPOI.OOXML.XML", - "lib/netstandard2.0/NPOI.OOXML.dll", - "lib/netstandard2.0/NPOI.OpenXml4Net.XML", - "lib/netstandard2.0/NPOI.OpenXml4Net.dll", - "lib/netstandard2.0/NPOI.OpenXmlFormats.dll", - "lib/netstandard2.0/NPOI.XML", - "lib/netstandard2.0/NPOI.dll", - "lib/netstandard2.1/NPOI.OOXML.XML", - "lib/netstandard2.1/NPOI.OOXML.dll", - "lib/netstandard2.1/NPOI.OpenXml4Net.XML", - "lib/netstandard2.1/NPOI.OpenXml4Net.dll", - "lib/netstandard2.1/NPOI.OpenXmlFormats.dll", - "lib/netstandard2.1/NPOI.XML", - "lib/netstandard2.1/NPOI.dll", - "logo/120_120.jpg", - "logo/240_240.png", - "logo/32_32.jpg", - "logo/60_60.jpg", - "npoi.2.5.2.nupkg.sha512", - "npoi.nuspec" - ] - }, - "Portable.BouncyCastle/1.8.6": { - "sha512": "y+GvZomzhY+Lwu5mMeNmFFYLHiEr2xFDOANhABn/wgg64/QpTzfgpNGPct+pXgQHjmutd363ZCur/91DLaBxOw==", - "type": "package", - "path": "portable.bouncycastle/1.8.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net40/BouncyCastle.Crypto.dll", - "lib/net40/BouncyCastle.Crypto.xml", - "lib/netstandard2.0/BouncyCastle.Crypto.dll", - "lib/netstandard2.0/BouncyCastle.Crypto.xml", - "portable.bouncycastle.1.8.6.nupkg.sha512", - "portable.bouncycastle.nuspec" - ] - }, - "SharpZipLib/1.2.0": { - "sha512": "zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==", - "type": "package", - "path": "sharpziplib/1.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/ICSharpCode.SharpZipLib.dll", - "lib/net45/ICSharpCode.SharpZipLib.pdb", - "lib/net45/ICSharpCode.SharpZipLib.xml", - "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll", - "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb", - "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml", - "sharpziplib.1.2.0.nupkg.sha512", - "sharpziplib.nuspec" - ] - }, - "Swashbuckle.AspNetCore.Swagger/5.6.3": { - "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==", - "type": "package", - "path": "swashbuckle.aspnetcore.swagger/5.6.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", - "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", - "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", - "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", - "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512", - "swashbuckle.aspnetcore.swagger.nuspec" - ] - }, - "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": { - "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==", - "type": "package", - "path": "swashbuckle.aspnetcore.swaggergen/5.6.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", - "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512", - "swashbuckle.aspnetcore.swaggergen.nuspec" - ] - }, - "System.Configuration.ConfigurationManager/4.5.0": { - "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==", - "type": "package", - "path": "system.configuration.configurationmanager/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Configuration.ConfigurationManager.dll", - "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", - "ref/net461/System.Configuration.ConfigurationManager.dll", - "ref/net461/System.Configuration.ConfigurationManager.xml", - "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", - "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", - "system.configuration.configurationmanager.4.5.0.nupkg.sha512", - "system.configuration.configurationmanager.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Drawing.Common/4.5.0": { - "sha512": "AiJFxxVPdeITstiRS5aAu8+8Dpf5NawTMoapZ53Gfirml24p7HIfhjmCRxdXnmmf3IUA3AX3CcW7G73CjWxW/Q==", - "type": "package", - "path": "system.drawing.common/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Drawing.Common.dll", - "lib/netstandard2.0/System.Drawing.Common.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net461/System.Drawing.Common.dll", - "ref/netstandard2.0/System.Drawing.Common.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", - "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", - "system.drawing.common.4.5.0.nupkg.sha512", - "system.drawing.common.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.AccessControl/4.5.0": { - "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", - "type": "package", - "path": "system.security.accesscontrol/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.dll", - "lib/netstandard1.3/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.dll", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.xml", - "ref/netstandard1.3/System.Security.AccessControl.dll", - "ref/netstandard1.3/System.Security.AccessControl.xml", - "ref/netstandard1.3/de/System.Security.AccessControl.xml", - "ref/netstandard1.3/es/System.Security.AccessControl.xml", - "ref/netstandard1.3/fr/System.Security.AccessControl.xml", - "ref/netstandard1.3/it/System.Security.AccessControl.xml", - "ref/netstandard1.3/ja/System.Security.AccessControl.xml", - "ref/netstandard1.3/ko/System.Security.AccessControl.xml", - "ref/netstandard1.3/ru/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", - "ref/netstandard2.0/System.Security.AccessControl.dll", - "ref/netstandard2.0/System.Security.AccessControl.xml", - "ref/uap10.0.16299/_._", - "runtimes/win/lib/net46/System.Security.AccessControl.dll", - "runtimes/win/lib/net461/System.Security.AccessControl.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", - "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.accesscontrol.4.5.0.nupkg.sha512", - "system.security.accesscontrol.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Cryptography.ProtectedData/4.5.0": { - "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==", - "type": "package", - "path": "system.security.cryptography.protecteddata/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.ProtectedData.dll", - "lib/net461/System.Security.Cryptography.ProtectedData.dll", - "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", - "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.ProtectedData.dll", - "ref/net461/System.Security.Cryptography.ProtectedData.dll", - "ref/net461/System.Security.Cryptography.ProtectedData.xml", - "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", - "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", - "system.security.cryptography.protecteddata.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Permissions/4.5.0": { - "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", - "type": "package", - "path": "system.security.permissions/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Security.Permissions.dll", - "lib/netstandard2.0/System.Security.Permissions.dll", - "ref/net461/System.Security.Permissions.dll", - "ref/net461/System.Security.Permissions.xml", - "ref/netstandard2.0/System.Security.Permissions.dll", - "ref/netstandard2.0/System.Security.Permissions.xml", - "system.security.permissions.4.5.0.nupkg.sha512", - "system.security.permissions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Principal.Windows/4.5.0": { - "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", - "type": "package", - "path": "system.security.principal.windows/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.Principal.Windows.dll", - "lib/net461/System.Security.Principal.Windows.dll", - "lib/netstandard1.3/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.dll", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/System.Security.Principal.Windows.dll", - "ref/netstandard1.3/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", - "ref/netstandard2.0/System.Security.Principal.Windows.dll", - "ref/netstandard2.0/System.Security.Principal.Windows.xml", - "ref/uap10.0.16299/_._", - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.principal.windows.4.5.0.nupkg.sha512", - "system.security.principal.windows.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - } - }, - "projectFileDependencyGroups": { - "net5.0": [ - "NPOI >= 2.5.2", - "Swashbuckle.AspNetCore.SwaggerGen >= 5.6.3" - ] - }, - "packageFolders": { - "C:\\Users\\AIJXZ\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Utils\\Win.Utils.csproj", - "projectName": "Win.Utils", - "projectPath": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Utils\\Win.Utils.csproj", - "packagesPath": "C:\\Users\\AIJXZ\\.nuget\\packages\\", - "outputPath": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Utils\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\AIJXZ\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp5" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "netcoreapp5", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "netcoreapp5", - "dependencies": { - "NPOI": { - "target": "Package", - "version": "[2.5.2, )" - }, - "Swashbuckle.AspNetCore.SwaggerGen": { - "target": "Package", - "version": "[5.6.3, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[5.0.0, 5.0.0]" - }, - { - "name": "Microsoft.NETCore.App.Ref", - "version": "[5.0.0, 5.0.0]" - }, - { - "name": "Microsoft.WindowsDesktop.App.Ref", - "version": "[5.0.0, 5.0.0]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.304\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/code/src/Shared/Win.Utils/obj/project.nuget.cache b/code/src/Shared/Win.Utils/obj/project.nuget.cache deleted file mode 100644 index dadd7b88..00000000 --- a/code/src/Shared/Win.Utils/obj/project.nuget.cache +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 2, -<<<<<<< HEAD - "dgSpecHash": "VZ9unMPAmcdhkbwLdI4sHfCuFhtegoNGzOSHMLpGk+Cs+9KGuocAH1FbPYwMNt5FgvhiTQnIDZKl/bWvU5Sy0A==", -======= - "dgSpecHash": "/s0O/G1fvmGIgzlfjHQ1mMCF4/OyM97pp2HaI56WAq6nZmbhnGfrZpOCy9XfMZWFSuewPbda3y0gRzHPdJF3rw==", ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 - "success": true, - "projectFilePath": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Utils\\Win.Utils.csproj", - "expectedPackageFiles": [ - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.win32.systemevents\\4.5.0\\microsoft.win32.systemevents.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\npoi\\2.5.2\\npoi.2.5.2.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\portable.bouncycastle\\1.8.6\\portable.bouncycastle.1.8.6.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\sharpziplib\\1.2.0\\sharpziplib.1.2.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\5.6.3\\swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\5.6.3\\swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\5.0.0\\microsoft.windowsdesktop.app.ref.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.netcore.app.ref\\5.0.0\\microsoft.netcore.app.ref.5.0.0.nupkg.sha512", - "C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.app.ref\\5.0.0\\microsoft.aspnetcore.app.ref.5.0.0.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file From c7174fba06a3f7b98c914e0274b76ae16446df36 Mon Sep 17 00:00:00 2001 From: mahao Date: Mon, 10 Jul 2023 11:36:55 +0800 Subject: [PATCH 08/14] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/src/SmartFactorySuite.sln | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/code/src/SmartFactorySuite.sln b/code/src/SmartFactorySuite.sln index 13867d31..82e9da96 100644 --- a/code/src/SmartFactorySuite.sln +++ b/code/src/SmartFactorySuite.sln @@ -1,10 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 -<<<<<<< HEAD -VisualStudioVersion = 17.5.33516.290 -======= VisualStudioVersion = 17.6.33815.320 ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Gateways", "Gateways", "{593B8559-1521-4E54-A7DF-7F58E5F6EA86}" EndProject @@ -68,11 +64,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BaseService.HttpApi", "Modu EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BaseService.HttpApi.Client", "Modules\BaseService\BaseService.HttpApi.Client\BaseService.HttpApi.Client.csproj", "{1913786D-E64D-48E4-98A7-42C3BCA9C282}" EndProject -<<<<<<< HEAD Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AuthServer.Host", "AuthServer\AuthServer.Host\AuthServer.Host.csproj", "{C94F578D-C331-4A9D-B001-93DAECB51447}" -======= -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AuthServer.Host", "AuthServer\AuthServer.Host\AuthServer.Host.csproj", "{4C7A0E8B-2DBC-4E76-8F68-0DD200CE88E7}" ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -164,17 +156,10 @@ Global {1913786D-E64D-48E4-98A7-42C3BCA9C282}.Debug|Any CPU.Build.0 = Debug|Any CPU {1913786D-E64D-48E4-98A7-42C3BCA9C282}.Release|Any CPU.ActiveCfg = Release|Any CPU {1913786D-E64D-48E4-98A7-42C3BCA9C282}.Release|Any CPU.Build.0 = Release|Any CPU -<<<<<<< HEAD {C94F578D-C331-4A9D-B001-93DAECB51447}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {C94F578D-C331-4A9D-B001-93DAECB51447}.Debug|Any CPU.Build.0 = Debug|Any CPU {C94F578D-C331-4A9D-B001-93DAECB51447}.Release|Any CPU.ActiveCfg = Release|Any CPU {C94F578D-C331-4A9D-B001-93DAECB51447}.Release|Any CPU.Build.0 = Release|Any CPU -======= - {4C7A0E8B-2DBC-4E76-8F68-0DD200CE88E7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {4C7A0E8B-2DBC-4E76-8F68-0DD200CE88E7}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4C7A0E8B-2DBC-4E76-8F68-0DD200CE88E7}.Release|Any CPU.ActiveCfg = Release|Any CPU - {4C7A0E8B-2DBC-4E76-8F68-0DD200CE88E7}.Release|Any CPU.Build.0 = Release|Any CPU ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -205,11 +190,7 @@ Global {56B50817-0F64-4CD8-814D-CA3827F40FFB} = {B55F5923-5FDE-4BEB-9E81-BE270D5909A1} {65DEB438-557B-4268-8EC6-25A9A2ED6FE1} = {B55F5923-5FDE-4BEB-9E81-BE270D5909A1} {1913786D-E64D-48E4-98A7-42C3BCA9C282} = {B55F5923-5FDE-4BEB-9E81-BE270D5909A1} -<<<<<<< HEAD {C94F578D-C331-4A9D-B001-93DAECB51447} = {BD0465F1-50F8-4913-8B01-7C2E44CEED27} -======= - {4C7A0E8B-2DBC-4E76-8F68-0DD200CE88E7} = {BD0465F1-50F8-4913-8B01-7C2E44CEED27} ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {CAAF5A4A-B83D-4CCD-BF50-58035AD87837} From 5e6281b7250776d01d33e058fb569c221f630161 Mon Sep 17 00:00:00 2001 From: mahao Date: Mon, 10 Jul 2023 11:42:17 +0800 Subject: [PATCH 09/14] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../appsettings.Development.json | 5 ++--- .../host/SettleAccount.HttpApi.Host/appsettings.json | 7 +------ 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.Development.json b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.Development.json index 96f60779..ed864b5d 100644 --- a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.Development.json +++ b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.Development.json @@ -7,9 +7,8 @@ // "SettleAccountService": "Server=LAPTOP-V3U07C2O;Database=SettleAccountService1;user id=sa;Password=1q2w!@#;" //}, "ConnectionStrings": { - "Default": "Server=192.168.0.140;Database=ABP;User ID=sa;Password=Microsoft2008;", - "SettleAccountService": "Server=192.168.0.140;Database=SettleAccountService;user id=sa;password=Microsoft2008;", - "Wms": "Server=192.168.0.140;Database=CPAT_WMS_TEST;user id=sa;password=Microsoft2008;" + "Default": "Server=dev.ccwin-in.com,13319;Database=BJABP;User ID=ccwin-in;Password=Microsoft@2022;Trusted_Connection=False;TrustServerCertificate=True", + "SettleAccountService": "Server=dev.ccwin-in.com,13319;Database=BJABP;User ID=ccwin-in;Password=Microsoft@2022;Trusted_Connection=False;TrustServerCertificate=True;" }, "Logging": { "LogLevel": { diff --git a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.json b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.json index 434bb5aa..ce7798af 100644 --- a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.json +++ b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.json @@ -4,12 +4,7 @@ }, "ConnectionStrings": { "Default": "Server=dev.ccwin-in.com,13319;Database=BJABP;User ID=ccwin-in;Password=Microsoft@2022;Trusted_Connection=False;TrustServerCertificate=True", - "SettleAccountService": "Server=dev.ccwin-in.com,13319;Database=SettleAccountService;User ID=ccwin-in;Password=Microsoft@2022;Trusted_Connection=False;TrustServerCertificate=True;", - - - - - + "SettleAccountService": "Server=dev.ccwin-in.com,13319;Database=BJABP;User ID=ccwin-in;Password=Microsoft@2022;Trusted_Connection=False;TrustServerCertificate=True;" }, "Serilog": { From acbbf62b31ced06b27a5e34976b500e3ab688c68 Mon Sep 17 00:00:00 2001 From: fangdawei <44673626@qq.com> Date: Mon, 10 Jul 2023 11:49:21 +0800 Subject: [PATCH 10/14] =?UTF-8?q?=E5=9F=BA=E7=A1=80=E6=95=B0=E6=8D=AEEF?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E4=BB=A3=E7=A0=81=E6=8F=90=E4=BA=A4=EF=BC=8C?= =?UTF-8?q?=E4=BB=B7=E6=A0=BC=E3=80=81=E5=A4=87=E4=BB=B6=E4=BB=B7=E6=A0=BC?= =?UTF-8?q?=E3=80=81=E7=89=A9=E6=96=99=E4=B8=BB=E6=95=B0=E6=8D=AE=E3=80=81?= =?UTF-8?q?=E7=89=A9=E6=96=99=E5=85=B3=E7=B3=BB=E3=80=81BOM=E7=AD=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...AccountDbContextModelCreatingExtensions.cs | 187 +++++++++++++++++- code/src/SmartFactorySuite.sln | 26 --- 2 files changed, 186 insertions(+), 27 deletions(-) diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs index 0e99c015..8b057a0d 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs @@ -64,12 +64,32 @@ namespace Win.Sfs.SettleAccount SettleAccountDbProperties.DbSchema ); + #region 基础数据 + //价格 + builder.ConfigurePriceListVersion(options); + builder.ConfigurePriceList(options); + //BJ备件价格 + builder.ConfigurePriceListVersionBJ(options); + builder.ConfigurePriceListBJ(options); + + //物料、物料关系 + builder.ConfigureMaterial(options); + builder.ConfigureMaterialRelationship(options); + //BOM + builder.ConfigureBom(options); + builder.ConfigureBomVersion(options); + //期间 + builder.ConfigureCentralizedControl(options); + + #endregion + + #region 派格结算 - builder.ConfigureBBAC_CAN_SA(options); + builder.ConfigureBBAC_CAN_SA(options); builder.ConfigureBBAC_CAN_SA_DETAIL(options); builder.ConfigureBBAC_NOT_SA_DETAIL(options); builder.ConfigureBBAC_PD_DETAIL(options); @@ -139,6 +159,171 @@ namespace Win.Sfs.SettleAccount } + #region 基础数据 + + private static void ConfigurePriceListBJ(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_PriceListBJ", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.MaterialCode).HasMaxLength(50); + b.Property(x => x.CustomerCode).HasMaxLength(50); + + }); + } + private static void ConfigurePriceListVersionBJ(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_PriceListVersionBJ", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.Year).HasMaxLength(50); + b.Property(x => x.Period).HasMaxLength(50); + b.Property(x => x.Version).HasMaxLength(50); + b.Property(x => x.Factory).HasMaxLength(50); + + }); + } + + private static void ConfigureCentralizedControl(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + b.ToTable($"{options.TablePrefix}_control", options.Schema); + b.ConfigureByConvention(); + b.Property(x => x.Year).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + b.Property(x => x.Period).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + b.HasIndex(x => new { x.Year, x.Period }).IsUnique().HasFilter(IsDeletedFilter); + }); + } + + + private static void ConfigureBomVersion(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + b.ToTable($"{options.TablePrefix}_bom_version", options.Schema); + b.ConfigureByConvention(); + b.Property(x => x.Version).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + b.Property(x => x.Year).HasMaxLength(CommonConsts.MaxCodeLength); + b.Property(x => x.Period).HasMaxLength(CommonConsts.MaxCodeLength); + b.Property(x => x.CustomerCode).HasMaxLength(CommonConsts.MaxCodeLength); + }); + } + + + private static void ConfigureBom(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_bom", options.Schema); + b.ConfigureByConvention(); + + b.Property(x => x.Year).HasMaxLength(CommonConsts.MaxCodeLength); + b.Property(x => x.Period).HasMaxLength(CommonConsts.MaxCodeLength); + b.Property(x => x.Factory).HasMaxLength(CommonConsts.MaxCodeLength); + b.Property(x => x.Version).HasMaxLength(CommonConsts.MaxCodeLength); + b.Property(x => x.ParentItemCode).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + b.Property(x => x.ChildItemCode).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + b.Property(x => x.Qty).IsRequired(); + b.Property(x => x.OperateProcess); + b.Property(x => x.ScrapPercent); + b.Property(x => x.BomType).HasMaxLength(CommonConsts.MaxCodeLength); + b.Property(x => x.EffectiveTime); + b.Property(x => x.ExpireTime); + b.Property(x => x.IssuePosition); + b.Property(x => x.BomLevel); + + b.Property(x => x.Enabled); + + b.HasIndex(x => new { x.ParentItemCode, x.ChildItemCode, x.Version }).IsUnique().HasFilter(IsDeletedFilter); + }); + } + + private static void ConfigureMaterial(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + builder.Entity(b => + { + b.ToTable($"{options.TablePrefix}_material", options.Schema); + b.ConfigureByConvention(); + + + b.Property(x => x.MaterialCode).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + b.Property(x => x.EstimateType).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + b.Property(x => x.MaterialCode).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + b.Property(x => x.Unit).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + b.HasIndex(x => new { x.MaterialCode }).IsUnique().HasFilter(IsDeletedFilter); + + + }); + } + + + + private static void ConfigureMaterialRelationship(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + builder.Entity(b => + { + b.ToTable($"{options.TablePrefix}_relationship", options.Schema); + b.ConfigureByConvention(); + + + + + //b.Property(x => x.SettleMaterialCode).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + b.Property(x => x.MaterialProperty).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + //b.Property(x => x.ShipMaterailCode).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + b.Property(x => x.ErpMaterialCode).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + b.HasIndex(x => new { x.ErpMaterialCode }); + + b.HasIndex(x => new { x.ErpMaterialCode }).IsUnique().HasFilter(IsDeletedFilter); + + + }); + } + + private static void ConfigurePriceList(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_PriceList", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.MaterialCode).HasMaxLength(50); + b.Property(x => x.CustomerCode).HasMaxLength(50); + + }); + } + private static void ConfigurePriceListVersion(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + { + + builder.Entity(b => + { + + b.ToTable($"{options.TablePrefix}_PriceListVersion", options.Schema); + + b.ConfigureByConvention(); + b.Property(x => x.Year).HasMaxLength(50); + b.Property(x => x.Period).HasMaxLength(50); + b.Property(x => x.Version).HasMaxLength(50); + b.Property(x => x.Factory).HasMaxLength(50); + + }); + } + #endregion + #region 红旗M平台、一汽轿车 diff --git a/code/src/SmartFactorySuite.sln b/code/src/SmartFactorySuite.sln index 13867d31..49395228 100644 --- a/code/src/SmartFactorySuite.sln +++ b/code/src/SmartFactorySuite.sln @@ -1,10 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 -<<<<<<< HEAD -VisualStudioVersion = 17.5.33516.290 -======= VisualStudioVersion = 17.6.33815.320 ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Gateways", "Gateways", "{593B8559-1521-4E54-A7DF-7F58E5F6EA86}" EndProject @@ -68,12 +64,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BaseService.HttpApi", "Modu EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BaseService.HttpApi.Client", "Modules\BaseService\BaseService.HttpApi.Client\BaseService.HttpApi.Client.csproj", "{1913786D-E64D-48E4-98A7-42C3BCA9C282}" EndProject -<<<<<<< HEAD -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AuthServer.Host", "AuthServer\AuthServer.Host\AuthServer.Host.csproj", "{C94F578D-C331-4A9D-B001-93DAECB51447}" -======= -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AuthServer.Host", "AuthServer\AuthServer.Host\AuthServer.Host.csproj", "{4C7A0E8B-2DBC-4E76-8F68-0DD200CE88E7}" ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -164,17 +154,6 @@ Global {1913786D-E64D-48E4-98A7-42C3BCA9C282}.Debug|Any CPU.Build.0 = Debug|Any CPU {1913786D-E64D-48E4-98A7-42C3BCA9C282}.Release|Any CPU.ActiveCfg = Release|Any CPU {1913786D-E64D-48E4-98A7-42C3BCA9C282}.Release|Any CPU.Build.0 = Release|Any CPU -<<<<<<< HEAD - {C94F578D-C331-4A9D-B001-93DAECB51447}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C94F578D-C331-4A9D-B001-93DAECB51447}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C94F578D-C331-4A9D-B001-93DAECB51447}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C94F578D-C331-4A9D-B001-93DAECB51447}.Release|Any CPU.Build.0 = Release|Any CPU -======= - {4C7A0E8B-2DBC-4E76-8F68-0DD200CE88E7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {4C7A0E8B-2DBC-4E76-8F68-0DD200CE88E7}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4C7A0E8B-2DBC-4E76-8F68-0DD200CE88E7}.Release|Any CPU.ActiveCfg = Release|Any CPU - {4C7A0E8B-2DBC-4E76-8F68-0DD200CE88E7}.Release|Any CPU.Build.0 = Release|Any CPU ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -205,11 +184,6 @@ Global {56B50817-0F64-4CD8-814D-CA3827F40FFB} = {B55F5923-5FDE-4BEB-9E81-BE270D5909A1} {65DEB438-557B-4268-8EC6-25A9A2ED6FE1} = {B55F5923-5FDE-4BEB-9E81-BE270D5909A1} {1913786D-E64D-48E4-98A7-42C3BCA9C282} = {B55F5923-5FDE-4BEB-9E81-BE270D5909A1} -<<<<<<< HEAD - {C94F578D-C331-4A9D-B001-93DAECB51447} = {BD0465F1-50F8-4913-8B01-7C2E44CEED27} -======= - {4C7A0E8B-2DBC-4E76-8F68-0DD200CE88E7} = {BD0465F1-50F8-4913-8B01-7C2E44CEED27} ->>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {CAAF5A4A-B83D-4CCD-BF50-58035AD87837} From aa830c12420162a6a4a9c1c818abb33e3369833e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A6=20=E8=B5=B5?= <89237069@qq.com> Date: Mon, 10 Jul 2023 13:02:13 +0800 Subject: [PATCH 11/14] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../appsettings.json | 2 +- .../Entities/BQ/BBAC_CAN_SA.cs | 15 + .../Entities/BQ/BBAC_NOT_SA_DETAIL.cs | 6 + .../Entities/BQ/BBAC_PD_DETAIL.cs | 5 + .../Entities/BQ/BBAC_SA.cs | 17 +- .../Entities/BQ/BBAC_SE_DETAIL.cs | 4 + .../Entities/BQ/BBAC_SE_EDI.cs | 2 + .../Entities/BQ/BBAC_SE_REPORT.cs | 4 + .../Entities/BQ/BBAC_SE_SA_REPORT.cs | 4 + .../Entities/BQ/HBPO_CAN_SA.cs | 9 + .../Entities/BQ/HBPO_NOT_SA_DETAIL.cs | 7 + .../Entities/BQ/HBPO_PD_DETAIL.cs | 4 + .../Entities/BQ/HBPO_SA.cs | 9 + .../Entities/BQ/HBPO_SE_DETAIL.cs | 4 + .../Entities/BQ/HBPO_SE_EDI.cs | 4 + .../Entities/BQ/HBPO_SE_REPORT.cs | 4 + .../Entities/BQ/HBPO_SE_SA_REPORT.cs | 4 + .../Entities/BQ/INVOICE_GRP.cs | 4 + .../Entities/BQ/INVOICE_MAP_GROUP.cs | 4 + .../Entities/BQ/INVOICE_NOT_SETTLE.cs | 4 + .../Entities/BQ/INVOICE_WAIT_DETAIL.cs | 4 + .../Entities/BQ/JIT_SE_SA_REPORT.cs | 4 + .../Entities/BQ/M_PD_DETAIL.cs | 22 +- .../Entities/BQ/PUB_CAN_SA.cs | 8 + .../Entities/BQ/PUB_NOT_SA_DETAIL.cs | 4 + .../Entities/BQ/PUB_PD_DETAIL.cs | 4 + .../Entities/BQ/PUB_SA.cs | 8 + .../Entities/BQ/PUB_SE_DETAIL.cs | 4 + ...AccountDbContextModelCreatingExtensions.cs | 305 +- .../20220413040718_5677.Designer.cs | 15139 ---------------- .../Migrations/20220413040718_5677.cs | 6310 ------- .../SettleAccountDbContextModelSnapshot.cs | 15137 --------------- 32 files changed, 251 insertions(+), 36814 deletions(-) delete mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20220413040718_5677.Designer.cs delete mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20220413040718_5677.cs delete mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/SettleAccountDbContextModelSnapshot.cs diff --git a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.json b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.json index 434bb5aa..ec00c4e8 100644 --- a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.json +++ b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.json @@ -4,7 +4,7 @@ }, "ConnectionStrings": { "Default": "Server=dev.ccwin-in.com,13319;Database=BJABP;User ID=ccwin-in;Password=Microsoft@2022;Trusted_Connection=False;TrustServerCertificate=True", - "SettleAccountService": "Server=dev.ccwin-in.com,13319;Database=SettleAccountService;User ID=ccwin-in;Password=Microsoft@2022;Trusted_Connection=False;TrustServerCertificate=True;", + "SettleAccountService": "Server=dev.ccwin-in.com,13319;Database=BQ_SA;User ID=ccwin-in;Password=Microsoft@2022;Trusted_Connection=False;TrustServerCertificate=True;" diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_CAN_SA.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_CAN_SA.cs index 709f6660..46878084 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_CAN_SA.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_CAN_SA.cs @@ -7,6 +7,7 @@ namespace SettleAccount.Domain.BQ; [Display(Name = "BBAC可结算导入")] public class BBAC_CAN_SA:FullAuditedAggregateRoot { + [Display(Name = "期间")] public int Version { get; set; } @@ -26,6 +27,12 @@ public class BBAC_CAN_SA:FullAuditedAggregateRoot ///
[Display(Name = "明细记录行数")] public string InvGroupNum { get; set; } = null!; + public BBAC_CAN_SA() + { + + } + + public BBAC_CAN_SA(Guid guid, int version, string billNum, string settleBillNum, string state, string invGroupNum) { @@ -117,6 +124,14 @@ public class BBAC_CAN_SA_DETAIL: SA_CAN_BASE //[Display(Name = "发票分组号")] //public string InvGroupNum { get; set; } = null!; + public BBAC_CAN_SA_DETAIL() + { + + } + + + + public BBAC_CAN_SA_DETAIL(Guid guid,string keyCode, int version, string billNum, string settleBillNum, string lU, string pN, string site, decimal qty, decimal price, string category, string isReturn, DateTime settleDate, string groupNum, string invGroupNum) { Id = guid; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_NOT_SA_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_NOT_SA_DETAIL.cs index 2218cba6..a7b3fce1 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_NOT_SA_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_NOT_SA_DETAIL.cs @@ -84,6 +84,12 @@ public class BBAC_NOT_SA_DETAIL:SA_NOT_BASE //[Display(Name = "结算分组")] //public string GroupNum { get; set; } = null!; + + public BBAC_NOT_SA_DETAIL() + { + + } + public BBAC_NOT_SA_DETAIL(Guid guid, string keyCode, int version, string settleBillNum, string lU, string pN, string site, decimal qty, decimal price, string category, string isReturn, string invGroupNum, DateTime settleDate, string groupNum) { Id = guid; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_PD_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_PD_DETAIL.cs index 76abc1e2..7084d90e 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_PD_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_PD_DETAIL.cs @@ -63,4 +63,9 @@ public class BBAC_PD_DETAIL:PD_BASE SettleDate = settleDate; GroupNum = groupNum; } + + public BBAC_PD_DETAIL() + { + + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SA.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SA.cs index b3c65f82..8dca5bdc 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SA.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SA.cs @@ -33,6 +33,12 @@ public class BBAC_SA:FullAuditedAggregateRoot DNBillNum = dNBillNum; State = state; } + public BBAC_SA() + { + + } + + } [Display(Name = "BBAC结算导入明细")] @@ -110,12 +116,12 @@ public class BBAC_SA_DETAIL:SA_BASE //[Display(Name = "结算分组")] //public string GroupNum { get; set; } = null!; - //[Display(Name = "发票分组号")] - //public string InvGroupNum { get; set; } = null!; + //[Display(Name = "发票分组号")] + //public string InvGroupNum { get; set; } = null!; public BBAC_SA_DETAIL(Guid p_guid, string keyCode, int version, string billNum, string lU, string pN, string site, decimal qty, decimal price, string category, string isReturn, DateTime settleDate, string groupNum, string invGroupNum) { - Id= p_guid; + Id = p_guid; KeyCode = keyCode; Version = version; BillNum = billNum; @@ -130,4 +136,9 @@ public class BBAC_SA_DETAIL:SA_BASE GroupNum = groupNum; //InvGroupNum = invGroupNum; } + + public BBAC_SA_DETAIL() + { + + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_DETAIL.cs index 0ac09f1e..4b8341e0 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_DETAIL.cs @@ -58,4 +58,8 @@ public class BBAC_SE_DETAIL:SE_BASE ShippingDate = shippingDate; WmsBillNum = wmsBillNum; } + public BBAC_SE_DETAIL() + { + + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_EDI.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_EDI.cs index 18012cbd..61bfc315 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_EDI.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_EDI.cs @@ -36,6 +36,8 @@ public class BBAC_SE_EDI:FullAuditedAggregateRoot [Display(Name = "订货时间")] public DateTime BeginDate { get; set; } + public BBAC_SE_EDI() + { } public BBAC_SE_EDI(Guid guid, string keyCode, int version, string lU, string pN, string seqNumber, string assemblyCode, string injectionCode, decimal qty, DateTime beginDate) { Id = guid; diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_REPORT.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_REPORT.cs index 4b13bfeb..b8b033f5 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_REPORT.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_REPORT.cs @@ -59,4 +59,8 @@ public class BBAC_SE_REPORT:FullAuditedAggregateRoot ShippingDate = shippingDate; WmsBillNum = wmsBillNum; } + + public BBAC_SE_REPORT() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_SA_REPORT.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_SA_REPORT.cs index 73cc3312..4b37f20c 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_SA_REPORT.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/BBAC_SE_SA_REPORT.cs @@ -75,4 +75,8 @@ public class BBAC_SE_SA_REPORT :FullAuditedAggregateRoot FixPrice = fixPrice; Version = version; } + + public BBAC_SE_SA_REPORT() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_CAN_SA.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_CAN_SA.cs index a3e283a4..e0eb2021 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_CAN_SA.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_CAN_SA.cs @@ -35,6 +35,10 @@ public class HBPO_CAN_SA :FullAuditedAggregateRoot State = state; InvGroupNum = invGroupNum; } + + public HBPO_CAN_SA() + { + } } [Display(Name = "HBPO可结算导入明细")] @@ -120,5 +124,10 @@ public class HBPO_CAN_SA_DETAIL:SA_CAN_BASE GroupNum = groupNum; InvGroupNum = invGroupNum; } + + public HBPO_CAN_SA_DETAIL() + { + } } + diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_NOT_SA_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_NOT_SA_DETAIL.cs index d5607b23..2192899c 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_NOT_SA_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_NOT_SA_DETAIL.cs @@ -94,6 +94,9 @@ public class HBPO_NOT_SA_DETAIL :SA_NOT_BASE //[Display(Name = "发票分组号")] //public string InvGroupNum { get; set; } = null!; + + + public HBPO_NOT_SA_DETAIL(Guid guid ,string keyCode, int version, string settleBillNum, string lU, string pN, string site, decimal qty, decimal price, DateTime settleDate, string groupNum, string invGroupNum) { Id = guid; @@ -109,4 +112,8 @@ public class HBPO_NOT_SA_DETAIL :SA_NOT_BASE GroupNum = groupNum; InvGroupNum = invGroupNum; } + + public HBPO_NOT_SA_DETAIL() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_PD_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_PD_DETAIL.cs index ecc9139d..40416049 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_PD_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_PD_DETAIL.cs @@ -62,4 +62,8 @@ public class HBPO_PD_DETAIL :PD_BASE SettleDate = settleDate; GroupNum = groupNum; } + + public HBPO_PD_DETAIL() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SA.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SA.cs index d226b097..8ff81430 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SA.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SA.cs @@ -38,6 +38,10 @@ public class HBPO_SA :FullAuditedAggregateRoot State = state; RecordCount = recordCount; } + + public HBPO_SA() + { + } } [Display(Name = "HBPO结算导入明细")] @@ -108,6 +112,7 @@ public class HBPO_SA_DETAIL :SA_BASE [Display(Name = "发票分组号")] public string InvGroupNum { get; set; } = null!; + public HBPO_SA_DETAIL(Guid guid, string keyCode, int version, string billNum, string lU, string pN, string site, decimal qty, decimal price, DateTime settleDate, string groupNum, string invGroupNum) { this.Id= guid; @@ -123,4 +128,8 @@ public class HBPO_SA_DETAIL :SA_BASE GroupNum = groupNum; InvGroupNum = invGroupNum; } + + public HBPO_SA_DETAIL() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_DETAIL.cs index fced3b3e..24a94ebf 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_DETAIL.cs @@ -57,4 +57,8 @@ public class HBPO_SE_DETAIL :SE_BASE ShippingDate = shippingDate; WmsBillNum = wmsBillNum; } + + public HBPO_SE_DETAIL() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_EDI.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_EDI.cs index e6225b60..568a92f0 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_EDI.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_EDI.cs @@ -49,4 +49,8 @@ public class HBPO_SE_EDI :FullAuditedAggregateRoot Qty = qty; BeginDate = beginDate; } + + public HBPO_SE_EDI() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_REPORT.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_REPORT.cs index cdf4def9..81c0d26c 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_REPORT.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_REPORT.cs @@ -58,4 +58,8 @@ public class HBPO_SE_REPORT :FullAuditedAggregateRoot ShippingDate = shippingDate; WmsBillNum = wmsBillNum; } + + public HBPO_SE_REPORT() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_SA_REPORT.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_SA_REPORT.cs index 098228c3..bc3f537b 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_SA_REPORT.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/HBPO_SE_SA_REPORT.cs @@ -99,4 +99,8 @@ public class HBPO_SE_SA_REPORT :RE_BASE FixPrice = fixPrice; Version = version; } + + public HBPO_SE_SA_REPORT() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_GRP.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_GRP.cs index 2f36a6fc..543208a6 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_GRP.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_GRP.cs @@ -41,6 +41,10 @@ public class INVOICE_GRP : FullAuditedAggregateRoot FileName = fileName; BusinessType = businessType; } + + public INVOICE_GRP() + { + } } //[ShangWuShenHeGroup] diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_MAP_GROUP.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_MAP_GROUP.cs index e1ebac1d..4517eaef 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_MAP_GROUP.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_MAP_GROUP.cs @@ -40,4 +40,8 @@ public class INVOICE_MAP_GROUP : FullAuditedAggregateRoot Extend1 = extend1; Extend2 = extend2; } + + public INVOICE_MAP_GROUP() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_NOT_SETTLE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_NOT_SETTLE.cs index 17583d95..5d13ea46 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_NOT_SETTLE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_NOT_SETTLE.cs @@ -40,4 +40,8 @@ public class INVOICE_NOT_SETTLE : FullAuditedAggregateRoot Extend1 = extend1; Extend2 = extend2; } + + public INVOICE_NOT_SETTLE() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_WAIT_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_WAIT_DETAIL.cs index e4958d4f..49cb3240 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_WAIT_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_WAIT_DETAIL.cs @@ -62,4 +62,8 @@ public class INVOICE_WAIT_DETAIL :FullAuditedAggregateRoot Extend3 = extend3; Extend4 = extend4; } + + public INVOICE_WAIT_DETAIL() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/JIT_SE_SA_REPORT.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/JIT_SE_SA_REPORT.cs index 61a5d508..753621ec 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/JIT_SE_SA_REPORT.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/JIT_SE_SA_REPORT.cs @@ -101,4 +101,8 @@ public class JIT_SE_SA_REPORT :RE_BASE FixPrice = fixPrice; Version = version; } + + public JIT_SE_SA_REPORT() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/M_PD_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/M_PD_DETAIL.cs index 3fbb1e71..add824f7 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/M_PD_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/M_PD_DETAIL.cs @@ -45,5 +45,25 @@ public class M_PD_DETAIL : FullAuditedAggregateRoot [Display(Name = "结算分组")] public string GroupNum { get; set; } = null!; - + public M_PD_DETAIL(Guid guid, string keyCode, int version, string billNum, string lU, string rELU, string pN, string rEPN, string site, decimal qty, decimal price, string invGroupNum, DateTime settleDate, string groupNum) + { + Id = guid; + KeyCode = keyCode; + Version = version; + BillNum = billNum; + LU = lU; + RELU = rELU; + PN = pN; + REPN = rEPN; + Site = site; + Qty = qty; + Price = price; + InvGroupNum = invGroupNum; + SettleDate = settleDate; + GroupNum = groupNum; + } + + public M_PD_DETAIL() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_CAN_SA.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_CAN_SA.cs index 5155c3d3..a1972efc 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_CAN_SA.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_CAN_SA.cs @@ -39,6 +39,10 @@ public class PUB_CAN_SA :FullAuditedAggregateRoot BusinessType = businessType; InvGroupNum = invGroupNum; } + + public PUB_CAN_SA() + { + } } [Display(Name = "PUB可结算导入明细")] public class PUB_CAN_SA_DETAIL : SA_CAN_BASE @@ -128,4 +132,8 @@ public class PUB_CAN_SA_DETAIL : SA_CAN_BASE BusinessType = businessType; GroupNum = groupNum; } + + public PUB_CAN_SA_DETAIL() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_NOT_SA_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_NOT_SA_DETAIL.cs index dac62626..b844def0 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_NOT_SA_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_NOT_SA_DETAIL.cs @@ -86,4 +86,8 @@ public class PUB_NOT_SA_DETAIL : SA_NOT_BASE BusinessType = businessType; GroupNum = groupNum; } + + public PUB_NOT_SA_DETAIL() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_PD_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_PD_DETAIL.cs index ac0df6ca..eae34c5a 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_PD_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_PD_DETAIL.cs @@ -71,4 +71,8 @@ public class PUB_PD_DETAIL :PD_BASE SettleDate = settleDate; GroupNum = groupNum; } + + public PUB_PD_DETAIL() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SA.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SA.cs index 1e445f94..c245ee6a 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SA.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SA.cs @@ -25,6 +25,10 @@ public class PUB_SA : FullAuditedAggregateRoot BillNum = billNum; State = state; } + + public PUB_SA() + { + } } [Display(Name = "公用结算导入明细")] public class PUB_SA_DETAIL:SA_BASE @@ -118,4 +122,8 @@ public class PUB_SA_DETAIL:SA_BASE Extend3 = extend3; GroupNum = groupNum; } + + public PUB_SA_DETAIL() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SE_DETAIL.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SE_DETAIL.cs index 6c677f89..7e34769d 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SE_DETAIL.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/PUB_SE_DETAIL.cs @@ -64,4 +64,8 @@ public class PUB_SE_DETAIL :SE_BASE ShippingDate = shippingDate; WmsBillNum = wmsBillNum; } + + public PUB_SE_DETAIL() + { + } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs index 0e99c015..47e8e9f0 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs @@ -65,7 +65,7 @@ namespace Win.Sfs.SettleAccount ); - #region 派格结算 + #region 北汽结算 @@ -133,7 +133,7 @@ namespace Win.Sfs.SettleAccount //有条码 //builder.ConfigureWmsDetailWithCodeReport(options); - builder.ConfigureErrorBill(options); + //builder.ConfigureErrorBill(options); #endregion @@ -141,152 +141,17 @@ namespace Win.Sfs.SettleAccount - #region 红旗M平台、一汽轿车 + + #region 北汽 - /// - /// M平台出库详表 - /// - /// - /// - private static void ConfigureErrorBill(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) - { - - builder.Entity(b => - { - b.ToTable($"{options.TablePrefix}_ErrorBill", options.Schema); - b.ConfigureByConvention(); - b.Property(x => x.BillNum).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); - b.Property(x => x.WmsBillNum).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); - - b.Property(x => x.CustomerMaterialCode).HasMaxLength(CommonConsts.MaxCodeLength); - - b.Property(x => x.MaterialCode).HasMaxLength(CommonConsts.MaxCodeLength); - b.HasIndex(x => new { x.CustomerMaterialCode, x.BillNum }); - }); - - } - #endregion - - - #region PG-派格 + - private static void ConfigureWmsDetailReport(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) - { - - builder.Entity(b => - { - - b.ToTable($"{options.TablePrefix}_WmsDetailReport", options.Schema); - - b.ConfigureByConvention(); - b.Property(x => x.BillNum).IsRequired().HasMaxLength(50);//必填项 - b.Property(x => x.MaterialCode).HasMaxLength(50); - b.Property(x => x.MaterialDesc).HasMaxLength(100); - b.Property(x => x.Client).IsRequired().HasMaxLength(50); - b.Property(x => x.ClientCode).HasMaxLength(50); - b.Property(x => x.MaterialCode).HasMaxLength(50); - b.Property(x => x.MaterialDesc).HasMaxLength(150); - - b.Property(x => x.MaterialGroup).HasMaxLength(50); - b.Property(x => x.MaterialGroupCode).HasMaxLength(50); - b.Property(x => x.SaleCode).HasMaxLength(50); - b.Property(x => x.SettleCode).HasMaxLength(50); - //创建组合索引 - - - }); - } - private static void ConfigureWmsDetailDiffReport(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) - { - - builder.Entity(b => - { - - b.ToTable($"{options.TablePrefix}_WmsDetailDiffReport", options.Schema); - - b.ConfigureByConvention(); - b.Property(x => x.BillNum).IsRequired().HasMaxLength(50);//必填项 - b.Property(x => x.MaterialCode).HasMaxLength(50); - b.Property(x => x.MaterialDesc).HasMaxLength(100); - b.Property(x => x.Client).IsRequired().HasMaxLength(50); - - b.Property(x => x.MaterialCode).HasMaxLength(50); - b.Property(x => x.MaterialDesc).HasMaxLength(150); - - b.Property(x => x.MaterialGroup).HasMaxLength(50); - b.Property(x => x.MaterialGroupCode).HasMaxLength(50); - - //创建组合索引 - - - }); - } - - private static void ConfigureWmsDetailCancelReport(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) - { - - builder.Entity(b => - { - - b.ToTable($"{options.TablePrefix}_WmsDetailCancelReport", options.Schema); - - b.ConfigureByConvention(); - b.Property(x => x.BillNum).IsRequired().HasMaxLength(50);//必填项 - b.Property(x => x.MaterialCode).HasMaxLength(50); - b.Property(x => x.MaterialDesc).HasMaxLength(100); - b.Property(x => x.Client).IsRequired().HasMaxLength(50); - - b.Property(x => x.MaterialCode).HasMaxLength(50); - b.Property(x => x.MaterialDesc).HasMaxLength(150); - - b.Property(x => x.MaterialGroup).HasMaxLength(50); - b.Property(x => x.MaterialGroupCode).HasMaxLength(50); - - //创建组合索引 - - - }); - } - - - - /// - /// 有条码 - /// - /// - /// - private static void ConfigureWmsDetailWithCodeReport(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) - { - - builder.Entity(b => - { - - b.ToTable($"{options.TablePrefix}_WmsDetailWithCodeReport", options.Schema); - - b.ConfigureByConvention(); - b.Property(x => x.BillNum).IsRequired().HasMaxLength(50);//必填项 - b.Property(x => x.MaterialCode).HasMaxLength(50); - b.Property(x => x.MaterialDesc).HasMaxLength(100); - b.Property(x => x.Client).IsRequired().HasMaxLength(50); - - b.Property(x => x.MaterialCode).HasMaxLength(50); - b.Property(x => x.MaterialDesc).HasMaxLength(150); - - b.Property(x => x.MaterialGroup).HasMaxLength(50); - b.Property(x => x.EstimateType).HasMaxLength(50); - - //创建组合索引 - - - }); - } - - + /// /// 一汽轿车平台验收结算明细-导入 @@ -340,81 +205,81 @@ namespace Win.Sfs.SettleAccount /// /// /// - private static void ConfigureUnHQSettleAccount(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) - { + //private static void ConfigureUnHQSettleAccount(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + //{ - builder.Entity(b => - { + // builder.Entity(b => + // { - b.ToTable($"{options.TablePrefix}_UnHQSettleAccount", options.Schema); + // b.ToTable($"{options.TablePrefix}_UnHQSettleAccount", options.Schema); - b.ConfigureByConvention(); - //b.Property(x => x.HQHKanBan).IsRequired().HasMaxLength(150);//必填项 - b.Property(x => x.HQHKanBan).HasMaxLength(150);//有空的情况 - b.Property(x => x.MaterialVoucherNo).HasMaxLength(150); - b.Property(x => x.Factory).HasMaxLength(50); - b.Property(x => x.MaterialCode).IsRequired().HasMaxLength(150); - b.Property(x => x.ExternalKanbanNumber).HasMaxLength(50); - b.Property(x => x.KanbanNumber).HasMaxLength(150); - b.Property(x => x.Period).HasMaxLength(50); - b.Property(x => x.Year).HasMaxLength(50); - b.Property(x => x.Version).HasMaxLength(50); - b.Property(x => x.Supplier).HasMaxLength(50); - b.Property(x => x.StorageLocation).HasMaxLength(50); - b.Property(x => x.StorageLocationDesc).HasMaxLength(150); - b.Property(x => x.AcceptanceNo).HasMaxLength(50); + // b.ConfigureByConvention(); + // //b.Property(x => x.HQHKanBan).IsRequired().HasMaxLength(150);//必填项 + // b.Property(x => x.HQHKanBan).HasMaxLength(150);//有空的情况 + // b.Property(x => x.MaterialVoucherNo).HasMaxLength(150); + // b.Property(x => x.Factory).HasMaxLength(50); + // b.Property(x => x.MaterialCode).IsRequired().HasMaxLength(150); + // b.Property(x => x.ExternalKanbanNumber).HasMaxLength(50); + // b.Property(x => x.KanbanNumber).HasMaxLength(150); + // b.Property(x => x.Period).HasMaxLength(50); + // b.Property(x => x.Year).HasMaxLength(50); + // b.Property(x => x.Version).HasMaxLength(50); + // b.Property(x => x.Supplier).HasMaxLength(50); + // b.Property(x => x.StorageLocation).HasMaxLength(50); + // b.Property(x => x.StorageLocationDesc).HasMaxLength(150); + // b.Property(x => x.AcceptanceNo).HasMaxLength(50); - //创建组合索引 - //b.HasIndex(x => new { x.Version, x.HQHKanBan, x.MaterialCode }).IsUnique().HasFilter(IsDeletedFilter); + // //创建组合索引 + // //b.HasIndex(x => new { x.Version, x.HQHKanBan, x.MaterialCode }).IsUnique().HasFilter(IsDeletedFilter); - }); - } + // }); + //} /// /// 红旗主机场-未结明细-版本 /// /// /// - private static void ConfigureUnHQSettleAccountVersion(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) - { + //private static void ConfigureUnHQSettleAccountVersion(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + //{ - builder.Entity(b => - { - b.ToTable($"{options.TablePrefix}_UnHQSettleAccountVersion", options.Schema); - b.ConfigureByConvention(); - b.Property(x => x.Year).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); - b.Property(x => x.Period).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); - b.Property(x => x.Version).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); - b.Property(x => x.CustomerCode).HasMaxLength(CommonConsts.MaxCodeLength); - b.HasIndex(x => new { x.Version }).IsUnique().HasFilter(IsDeletedFilter); - }); + // builder.Entity(b => + // { + // b.ToTable($"{options.TablePrefix}_UnHQSettleAccountVersion", options.Schema); + // b.ConfigureByConvention(); + // b.Property(x => x.Year).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + // b.Property(x => x.Period).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + // b.Property(x => x.Version).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + // b.Property(x => x.CustomerCode).HasMaxLength(CommonConsts.MaxCodeLength); + // b.HasIndex(x => new { x.Version }).IsUnique().HasFilter(IsDeletedFilter); + // }); - } + //} /// /// 大众发票汇总导入 /// /// /// - private static void ConfigureInvoice(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) - { + //private static void ConfigureInvoice(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + //{ - builder.Entity(b => - { + // builder.Entity(b => + // { - b.ToTable($"{options.TablePrefix}_Invoice", options.Schema); + // b.ToTable($"{options.TablePrefix}_Invoice", options.Schema); - b.ConfigureByConvention(); - b.Property(x => x.Year).HasMaxLength(50); - b.Property(x => x.Period).HasMaxLength(50); - b.Property(x => x.Version).HasMaxLength(50); - b.Property(x => x.Factory).HasMaxLength(50); - b.Property(x => x.MaterialCode).IsRequired().HasMaxLength(50);//零件号不能为空 - b.Property(x => x.MaterialDesc).HasMaxLength(50); - b.Property(x => x.Remark).HasMaxLength(1000); + // b.ConfigureByConvention(); + // b.Property(x => x.Year).HasMaxLength(50); + // b.Property(x => x.Period).HasMaxLength(50); + // b.Property(x => x.Version).HasMaxLength(50); + // b.Property(x => x.Factory).HasMaxLength(50); + // b.Property(x => x.MaterialCode).IsRequired().HasMaxLength(50);//零件号不能为空 + // b.Property(x => x.MaterialDesc).HasMaxLength(50); + // b.Property(x => x.Remark).HasMaxLength(1000); - }); - } + // }); + //} /// /// 大众发票汇总导入-版本 /// @@ -443,31 +308,31 @@ namespace Win.Sfs.SettleAccount ///
/// /// - private static void ConfigureSettleAccount(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) - { - builder.Entity(b => - { - b.ToTable($"{options.TablePrefix}_Settle", options.Schema); - b.ConfigureByConvention(); + //private static void ConfigureSettleAccount(this ModelBuilder builder, SettleAccountModelBuilderConfigurationOptions options) + //{ + // builder.Entity(b => + // { + // b.ToTable($"{options.TablePrefix}_Settle", options.Schema); + // b.ConfigureByConvention(); - b.Property(x => x.KENNCode).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + // b.Property(x => x.KENNCode).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); - b.Property(x => x.Version).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); - b.Property(x => x.Year).HasMaxLength(CommonConsts.MaxCodeLength); - b.Property(x => x.Period).HasMaxLength(CommonConsts.MaxCodeLength); - b.Property(x => x.MaterialCode).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); - b.Property(x => x.Qty).IsRequired(); - b.Property(x => x.Model).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); - b.Property(x => x.SettlementID).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); - b.Property(x => x.SettlementSupplier).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); - b.Property(x => x.ChassisNumber).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); - //b.Property(x => x.SettlementSupplier).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); - - b.Property(x => x.Enabled); - b.HasIndex(x => new { x.state }); - b.HasIndex(x => new { x.Version, x.ChassisNumber, x.MaterialCode, x.KENNCode }); - }); - } + // b.Property(x => x.Version).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + // b.Property(x => x.Year).HasMaxLength(CommonConsts.MaxCodeLength); + // b.Property(x => x.Period).HasMaxLength(CommonConsts.MaxCodeLength); + // b.Property(x => x.MaterialCode).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + // b.Property(x => x.Qty).IsRequired(); + // b.Property(x => x.Model).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + // b.Property(x => x.SettlementID).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + // b.Property(x => x.SettlementSupplier).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + // b.Property(x => x.ChassisNumber).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + // //b.Property(x => x.SettlementSupplier).IsRequired().HasMaxLength(CommonConsts.MaxCodeLength); + + // b.Property(x => x.Enabled); + // b.HasIndex(x => new { x.state }); + // b.HasIndex(x => new { x.Version, x.ChassisNumber, x.MaterialCode, x.KENNCode }); + // }); + //} /// /// 大众准时化结算明细导入-版本 /// @@ -1205,13 +1070,7 @@ namespace Win.Sfs.SettleAccount #endregion - #region 红旗 - - - - - - #endregion + } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20220413040718_5677.Designer.cs b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20220413040718_5677.Designer.cs deleted file mode 100644 index 1a1eeef3..00000000 --- a/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20220413040718_5677.Designer.cs +++ /dev/null @@ -1,15139 +0,0 @@ -// -using System; -using Microsoft.EntityFrameworkCore; -using Microsoft.EntityFrameworkCore.Infrastructure; -using Microsoft.EntityFrameworkCore.Metadata; -using Microsoft.EntityFrameworkCore.Migrations; -using Microsoft.EntityFrameworkCore.Storage.ValueConversion; -using Volo.Abp.EntityFrameworkCore; -using Win.Sfs.SettleAccount; - -namespace Win.Sfs.SettleAccount.Migrations -{ - [DbContext(typeof(SettleAccountDbContext))] - [Migration("20220413040718_5677")] - partial class _5677 - { - protected override void BuildTargetModel(ModelBuilder modelBuilder) - { -#pragma warning disable 612, 618 - modelBuilder - .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("Relational:MaxIdentifierLength", 128) - .HasAnnotation("ProductVersion", "5.0.8") - .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTCarConsigns.BTCarConsign", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasColumnType("nvarchar(450)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KBCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Qty") - .HasPrecision(18, 2) - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasMaxLength(36) - .HasColumnType("int"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "MaterialCode", "KBCode", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_btcarconsign"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTCarKBs.BTCarKB", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("ConsignQty") - .HasColumnType("decimal(18,2)"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DateTime") - .HasColumnType("datetime2"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DeliveryDateTime") - .HasColumnType("datetime2"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("NeedQty") - .HasPrecision(18, 2) - .HasColumnType("decimal(18,2)"); - - b.Property("OrderKBCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ReceiveAreaCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ReceiveAreaName") - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasMaxLength(36) - .HasColumnType("int"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "MaterialCode", "OrderKBCode", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_btcarkb"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTCarSeqFirsts.BTCarSeqFirst", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BarCode") - .HasColumnType("nvarchar(450)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasColumnType("nvarchar(450)"); - - b.Property("DT") - .HasColumnType("datetime2"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("OnLineDateTime") - .HasColumnType("datetime2"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("VIN") - .HasColumnType("nvarchar(450)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "BarCode", "VIN", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_btcarseqfirst"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTCarSeqSeconds.BTCarSeqSecond", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BarCode") - .HasColumnType("nvarchar(450)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CMSerie") - .HasColumnType("nvarchar(max)"); - - b.Property("CMSerieRemark") - .HasColumnType("nvarchar(max)"); - - b.Property("CarModelShort") - .HasColumnType("nvarchar(max)"); - - b.Property("CarName") - .HasColumnType("nvarchar(max)"); - - b.Property("CarType") - .HasColumnType("nvarchar(max)"); - - b.Property("Code") - .HasColumnType("nvarchar(max)"); - - b.Property("Color") - .HasColumnType("nvarchar(max)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasColumnType("nvarchar(450)"); - - b.Property("DateTime") - .HasColumnType("datetime2"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EngineCode") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InColor") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("OnLineDateTime") - .HasColumnType("datetime2"); - - b.Property("OrderStateNum") - .HasColumnType("nvarchar(max)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("PlanDate") - .HasColumnType("datetime2"); - - b.Property("PlanSeq") - .HasColumnType("int"); - - b.Property("PlanTypeRemark") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SpecialCarTypeRemark") - .HasColumnType("nvarchar(max)"); - - b.Property("StateName") - .HasColumnType("nvarchar(max)"); - - b.Property("TopSeq") - .HasColumnType("nvarchar(max)"); - - b.Property("VIN") - .HasColumnType("nvarchar(450)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "BarCode", "VIN", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_btcarseqsecond"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTCarSeqs.BTCarSeq", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BarCode") - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DT") - .HasColumnType("datetime2"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("OnLineDateTime") - .HasColumnType("datetime2"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasMaxLength(1024) - .HasColumnType("nvarchar(1024)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("VIN") - .IsRequired() - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "BarCode", "VIN", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_btcarseq"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTNotConsignReports.BTNotConsignReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BeginTime") - .HasColumnType("datetime2"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndTime") - .HasColumnType("datetime2"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_bt_not_kb_consign_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTNotConsignReports.BTNotConsignReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConsignQty") - .HasColumnType("decimal(18,2)"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(450)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DeliveryDateTime") - .HasColumnType("datetime2"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasColumnType("nvarchar(450)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("NeedQty") - .HasColumnType("decimal(18,2)"); - - b.Property("OrderKBCode") - .HasColumnType("nvarchar(450)"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId"); - - b.HasIndex("BranchId", "DocumentId", "Version", "CustomCode", "MaterialCode", "OrderKBCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_bt_not_kb_consign_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTSeqKBDiffReports.BTSeqKBDiffReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_bt_seq_kb_diff_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTSeqKBDiffReports.BTSeqKBDiffReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(450)"); - - b.Property("DT") - .HasColumnType("datetime2"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KBQty") - .HasColumnType("decimal(18,2)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SeqQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId"); - - b.HasIndex("BranchId", "DocumentId", "Version", "DT", "CustomCode", "MaterialCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_bt_seq_kb_diff_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Boms.Bom", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BomLevel") - .HasColumnType("int"); - - b.Property("BomType") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ChildItemCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ChildItemDesc") - .HasMaxLength(2048) - .HasColumnType("nvarchar(2048)"); - - b.Property("ChildItemUom") - .HasColumnType("nvarchar(max)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("EffectiveTime") - .HasColumnType("datetime2"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExpireTime") - .HasColumnType("datetime2"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("IssuePosition") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("OperateProcess") - .HasColumnType("int"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("ParentItemCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentItemDesc") - .HasMaxLength(2048) - .HasColumnType("nvarchar(2048)"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("ScrapPercent") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("ParentItemCode", "ChildItemCode", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_bom"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Customers.Customer", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Address") - .HasMaxLength(2048) - .HasColumnType("nvarchar(2048)"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("Code") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("Contact") - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("ContactEmail") - .HasColumnType("nvarchar(max)"); - - b.Property("ContactFax") - .HasColumnType("nvarchar(max)"); - - b.Property("ContactPhone") - .HasColumnType("nvarchar(max)"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CurrencyId") - .HasColumnType("uniqueidentifier"); - - b.Property("CustomerType") - .HasColumnType("int"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Description") - .HasMaxLength(2048) - .HasColumnType("nvarchar(2048)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Name") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("TaxRate") - .HasColumnType("decimal(18,2)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "Code") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_customer"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Customers.CustomerBom", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ChildItemCode") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("EffectiveTime") - .HasColumnType("datetime2"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("FailureTime") - .HasColumnType("datetime2"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("ParentItemCode") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "CustomerCode", "ParentItemCode", "ChildItemCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_customer_bom"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.BTCarConsigns.BTCarConsignVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_btcarconsign_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.BTCarKBs.BTCarKBVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DateTime") - .HasColumnType("datetime2"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_btcarkb_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.BTCarSeqFirsts.BTCarSeqFirstVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DT") - .HasColumnType("datetime2"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_btcarseqfirst_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.BTCarSeqSeconds.BTCarSeqSecondVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DateTime") - .HasColumnType("datetime2"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_btcarseqsecond_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.BTCarSeqs.BTCarSeqVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DT") - .HasColumnType("datetime2"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_btcarseq_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.BT_Car.BT_Car_Platform", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AcceptanceDate") - .HasColumnType("datetime2"); - - b.Property("AcceptanceNo") - .HasColumnType("nvarchar(max)"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BTCarKanBan") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExternalKanbanNumber") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KanbanNumber") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialVoucherNo") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StorageLocation") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("StorageLocationDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Supplier") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_BT_Car_Platform"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.BT_Car.BT_Car_PlatformVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_BT_Car_PlatformVersion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Boms.BomVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_bom_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.CarMaterialConfigs.CarMaterialConfig", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CarCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("CarCode", "MaterialCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_carmaterialconfig"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.CodeSettings.CodeSetting", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Description") - .HasColumnType("nvarchar(max)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Project") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Value") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Project", "Value") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_code"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Controls.CentralizedControl", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Year", "Period") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_control"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.EstimatedInventories.EstimatedInventoryVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_estinventory_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.EstimatedSums.EstimatedSum", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Postingperiod") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("PurchaseDocument") - .HasColumnType("nvarchar(max)"); - - b.Property("PurchaseLine") - .HasColumnType("nvarchar(max)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SupplierCode") - .HasColumnType("nvarchar(max)"); - - b.Property("SupplierDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_estsum"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.EstimatedSums.EstimatedSumVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_estsum_verion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.FISes.FIS_TH", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BeginTime") - .HasColumnType("datetime2"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CP5Time") - .HasColumnType("datetime2"); - - b.Property("CP7Time") - .HasColumnType("datetime2"); - - b.Property("ChassisNumber") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ChassisNumber2") - .HasColumnType("nvarchar(450)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndTime") - .HasColumnType("datetime2"); - - b.Property("ErpMaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend1") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KENNCode") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Model") - .HasColumnType("nvarchar(450)"); - - b.Property("OrderBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SequenceNumber") - .HasColumnType("nvarchar(max)"); - - b.Property("SettledQty") - .HasColumnType("decimal(18,2)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("ChassisNumber2", "Version", "Model", "MaterialCode") - .IsUnique() - .HasFilter("[ChassisNumber2] IS NOT NULL AND [Model] IS NOT NULL"); - - b.ToTable("Set_fis_th"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Factories.Factory", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("Code") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Desc") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("Code") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_factory"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQCarConsigns.HQConsign", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("MaterialDesc") - .HasMaxLength(200) - .HasColumnType("nvarchar(200)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("VIN") - .IsRequired() - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "MaterialCode", "VIN", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_hqcon"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQCarConsigns.HQConsignVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_hqcon_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQCarConsigns.HQSpecConsign", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KBCode") - .IsRequired() - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("KBCodeExtend") - .IsRequired() - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("MaterialDesc") - .HasMaxLength(200) - .HasColumnType("nvarchar(200)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "MaterialCode", "KBCode", "KBCodeExtend", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_hqspcon"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQCarConsigns.HQSpecConsignVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_hqspcon_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQCarKBs.HQKB", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("ConsignQty") - .HasColumnType("decimal(18,2)"); - - b.Property("CreateTime") - .HasColumnType("datetime2"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KBCode") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("MaterialDesc") - .HasMaxLength(200) - .HasColumnType("nvarchar(200)"); - - b.Property("NeedQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("VIN") - .IsRequired() - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "MaterialCode", "VIN", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_hqkb"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQCarKBs.HQKBVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_hqkb_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQCarKBs.HQSpecKB", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("ConsignQty") - .HasColumnType("decimal(18,2)"); - - b.Property("CreateTime") - .HasColumnType("datetime2"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KBCode") - .IsRequired() - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("MaterialDesc") - .HasMaxLength(200) - .HasColumnType("nvarchar(200)"); - - b.Property("NeedQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "MaterialCode", "KBCode", "Version") - .IsUnique() - .HasFilter("[MaterialCode] IS NOT NULL"); - - b.ToTable("Set_hqspkb"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQCarKBs.HQSpecKBVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_hqspkb_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQ_F.HQ_F_Kanban", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsAuto") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialDesc") - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("PoLine") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Supplier") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Warehouse") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("WarehouseDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.HasKey("Id"); - - b.HasIndex("Kanban", "PoLine", "MaterialCode"); - - b.ToTable("Set_HQ_F_Kanban"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQ_F.HQ_F_Platform", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AcceptanceDate") - .HasColumnType("datetime2"); - - b.Property("AcceptanceNo") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExternalKanbanNumber") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("HQHKanBan") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KanbanNumber") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialVoucherNo") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StorageLocation") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("StorageLocationDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Supplier") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_HQ_F_Platform"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQ_F.HQ_F_PlatformVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_HQ_F_PlatformVersion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQ_F.HQ_H_Kanban", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillDate") - .HasColumnType("datetime2"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsAuto") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialDesc") - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("PoLine") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Supplier") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Warehouse") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("WarehouseDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("WmsBillNum") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("Kanban", "PoLine", "MaterialCode"); - - b.ToTable("Set_HQ_H_Kanban"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQ_F.HQ_M_Kanban", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsAuto") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialDesc") - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("PoLine") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Supplier") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Warehouse") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("WarehouseDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.HasKey("Id"); - - b.HasIndex("Kanban", "PoLine", "MaterialCode"); - - b.ToTable("Set_HQ_M_Kanban"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQ_H.HQ_H_Platform", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AcceptanceDate") - .HasColumnType("datetime2"); - - b.Property("AcceptanceNo") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExternalKanbanNumber") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("HQHKanBan") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KanbanNumber") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialVoucherNo") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StorageLocation") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("StorageLocationDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Supplier") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_HQ_H_Platform"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQ_H.HQ_H_PlatformVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_HQ_H_PlatformVersion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQ_M.HQ_M_Platform", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AcceptanceDate") - .HasColumnType("datetime2"); - - b.Property("AcceptanceNo") - .HasColumnType("nvarchar(max)"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExternalKanbanNumber") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("HQMKanBan") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KanbanNumber") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialVoucherNo") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StorageLocation") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("StorageLocationDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Supplier") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_HQ_M_Platform"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQ_M.HQ_M_PlatformVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_HQ_M_PlatformVersion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.ImportMap.ImportColumnMap", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsCheck") - .HasColumnType("bit"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("NewColumnName") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OldColumnName") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ProjectName") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Set_importmap"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Inventories.InventoryDetailVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(450)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version", "Factory") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_inventory_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Invoices.Invoice", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialDesc") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasMaxLength(1000) - .HasColumnType("nvarchar(1000)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_Invoice"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Invoices.InvoiceVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_InvoiceVersion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.ItemInvoicePrices.ItemInvoicePrice", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Backorder") - .HasColumnType("nvarchar(max)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CC") - .HasColumnType("nvarchar(max)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtendedMargin") - .HasColumnType("decimal(18,2)"); - - b.Property("ExtendedPrice") - .HasColumnType("decimal(18,2)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Sales") - .HasColumnType("nvarchar(max)"); - - b.Property("SubAcct") - .HasColumnType("nvarchar(max)"); - - b.Property("UM") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Period", "Version", "MaterialCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_item_invoice_price"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.ItemInvoicePrices.ItemInvoicePriceVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_item_invoice_price_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.JFCarConsigns.JFCarConsignVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_jfcarconsign_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.JFCarKBs.JFCarKBVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_jfcarkb_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.MaterialRelationships.MaterialRelationshipDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AppraisalCategory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ErpMaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialDesc") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialProperty") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SettleMaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ShipMaterailCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_MaterialRelationshipDetail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.MaterialRelationships.MaterialRelationshipVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_MaterialRelationshipVersion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Materials.Material", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EstimateType") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("EstimateTypeDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Unit") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("MaterialCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_material"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Prices.PriceList", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BeginDate") - .HasColumnType("datetime2"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndDate") - .HasColumnType("datetime2"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Type") - .HasColumnType("int"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Set_PriceList"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Prices.PriceListBJ", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BeginDate") - .HasColumnType("datetime2"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndDate") - .HasColumnType("datetime2"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Type") - .HasColumnType("int"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Set_PriceListBJ"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Prices.PriceListVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_PriceListVersion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Prices.PriceListVersionBJ", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_PriceListVersionBJ"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SecMatch.SecMatchBase", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("Buyer") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffAmount") - .HasColumnType("decimal(18,2)"); - - b.Property("DiffPrice") - .HasColumnType("decimal(18,2)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Index") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("IsDiffNumber") - .HasColumnType("bit"); - - b.Property("IsSettle") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialDesc") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialPartCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Model") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("PartType") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("RealSettlementNumber") - .HasColumnType("decimal(18,2)"); - - b.Property("RealSettlementPrice") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SettleMentPartCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SettlementNumber") - .HasColumnType("decimal(18,2)"); - - b.Property("SettlementPrice") - .HasColumnType("decimal(18,2)"); - - b.Property("SupplierCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SupplierName") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SupplyProportion") - .HasMaxLength(50) - .HasColumnType("decimal(18,2)"); - - b.Property("TheoreticalSettlementNumber") - .HasColumnType("decimal(18,2)"); - - b.Property("UsedNumber") - .HasMaxLength(50) - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_SecMatchBase"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SecondaryMatching.SecondaryAdjustment", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("Buyer") - .HasColumnType("nvarchar(max)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerComponentCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("CustomerMaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("HasChanged") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SupplierCode") - .HasColumnType("nvarchar(450)"); - - b.Property("Total") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version", "CustomerComponentCode", "CustomerMaterialCode", "SupplierCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_adj"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SecondaryMatching.SecondaryAdjustmentVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_adj_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SecondaryMatching.SecondaryDiscount", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("Buyer") - .HasColumnType("nvarchar(max)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("HasChanged") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SupplierCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Total") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("SupplierCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_dis"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SecondaryMatching.SecondaryDiscountVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_dis_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SecondaryMatching.SecondaryPriceRatio", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomItemCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("CustomItemPrice") - .HasColumnType("decimal(18,2)"); - - b.Property("CustomSubItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("CustomSubItemPrice") - .HasColumnType("decimal(18,2)"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SupplierCode") - .HasColumnType("nvarchar(450)"); - - b.Property("SupplierDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("SupplyProportion") - .HasColumnType("nvarchar(max)"); - - b.Property("SupplyProportionPrice") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version", "CustomItemCode", "CustomSubItemCode", "SupplierCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_ratio"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SecondaryMatching.SecondaryPriceRatioVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .IsRequired() - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_ratio_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettleAccounts.SettleAccount", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CP5A") - .HasColumnType("datetime2"); - - b.Property("CP7") - .HasColumnType("datetime2"); - - b.Property("ChassisNumber") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KENNCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Model") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SettleYear") - .HasColumnType("nvarchar(max)"); - - b.Property("SettlementID") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("SettlementSupplier") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("state") - .HasColumnType("int"); - - b.HasKey("Id"); - - b.HasIndex("state"); - - b.HasIndex("Version", "ChassisNumber", "MaterialCode", "KENNCode"); - - b.ToTable("Set_Settle"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettleAccounts.SettleAccountVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_Settle_Version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettleAccounts.UnSettleAccount", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CP5A") - .HasColumnType("datetime2"); - - b.Property("CP7") - .HasColumnType("datetime2"); - - b.Property("ChassisNumber") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KENNCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Model") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SettleYear") - .HasColumnType("nvarchar(max)"); - - b.Property("SettlementID") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("SettlementSupplier") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("UnsettledReason") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("state") - .HasColumnType("int"); - - b.HasKey("Id"); - - b.HasIndex("state"); - - b.HasIndex("Version", "ChassisNumber", "MaterialCode", "KENNCode") - .IsUnique(); - - b.ToTable("Set_Unsettle"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettleAccounts.UnSettleAccountVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_Unsettle_Version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettlementCrossReference.SettlementCrossReferenceVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_SettlementCrossReference_Version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettlementCrossReferences.SettlementCrossReference", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BomMaterialCode") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("Buyer") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialDesc") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Model") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("PartType") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SettlementMaterialCode") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SupplierCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SupplierDesc") - .HasMaxLength(128) - .HasColumnType("nvarchar(128)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.HasIndex("Version", "SettlementMaterialCode", "BomMaterialCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_SettlementCrossReference"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettlementPakAndSparePartsRef.SettlementPakAndSpareParts", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("ApplicableFunction") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ErpSparePartCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ErpSparePartName") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Model") - .HasColumnType("nvarchar(max)"); - - b.Property("PartType") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("PerCarNum") - .HasMaxLength(50) - .HasColumnType("decimal(18,2)"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Price") - .HasMaxLength(50) - .HasColumnType("decimal(18,2)"); - - b.Property("ProductLine") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("QADCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("QuantityPrice") - .HasMaxLength(50) - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SettlementPartCode") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SettlementPartDesc") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SupplierCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SupplierName") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SupplyProportion") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_SettlementPakAndSpareParts"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettlementPakAndSparePartsRef.SettlementPakAndSparePartsVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_SettlementPakAndSpareParts_Version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettlementParts.SettlementPart", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Model") - .HasColumnType("nvarchar(max)"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SettlementPartCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("SettlementPartDesc") - .HasMaxLength(2048) - .HasColumnType("nvarchar(2048)"); - - b.Property("Uom") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Period", "CustomerCode", "Version", "SettlementPartCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_settlement_part"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettlementParts.SettlementPartVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_settlement_part_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.StorageLocations.CustomerStorageLocation", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("CustomerDesc") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Storagelocation") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Storagelocation", "CustomerCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_customerlocation"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.TaskJob", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("ActionName") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DownFileName") - .HasMaxLength(500) - .HasColumnType("nvarchar(500)"); - - b.Property("Email") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Error") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("FileName") - .HasMaxLength(500) - .HasColumnType("nvarchar(500)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Name") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("RealDownFileName") - .HasMaxLength(500) - .HasColumnType("nvarchar(500)"); - - b.Property("RealFileName") - .HasMaxLength(500) - .HasColumnType("nvarchar(500)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("ServiceName") - .HasMaxLength(300) - .HasColumnType("nvarchar(300)"); - - b.Property("State") - .HasColumnType("nvarchar(max)"); - - b.Property("TaskId") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Type") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Set_TaskJob"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.UnHQSettleAccounts.UnHQSettleAccount", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AcceptanceDate") - .HasColumnType("datetime2"); - - b.Property("AcceptanceNo") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExternalKanbanNumber") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("HQHKanBan") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KanbanNumber") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialVoucherNo") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StorageLocation") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("StorageLocationDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Supplier") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_UnHQSettleAccount"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.UnHQSettleAccounts.UnHQSettleAccountVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_UnHQSettleAccountVersion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.VWKanBan.KanBanSettle", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Batch") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Flag") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("PartType") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Relation") - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SettleDate") - .HasColumnType("datetime2"); - - b.Property("SettleInputDate") - .HasColumnType("datetime2"); - - b.Property("State") - .HasColumnType("nvarchar(max)"); - - b.Property("SupplierCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("Version", "Kanban", "MaterialCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_KanBanSettle"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.VWKanBan.KanBanVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_KanBanSettle_Version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.VWScrapClaims.ScrapClaims", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialDesc") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasMaxLength(1000) - .HasColumnType("nvarchar(1000)"); - - b.Property("Type") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_ScrapClaims"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.VWScrapClaims.ScrapClaimsVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_ScrapClaims_Version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.VWSparePart.SparePart", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AccountNum") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("AmountNoTax") - .HasColumnType("decimal(18,2)"); - - b.Property("BatchNo") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DeliveryLineNum") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeliveryOrderNo") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasMaxLength(250) - .HasColumnType("nvarchar(250)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("FactoryName") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("GermanInvoiceNo") - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("InvoicedQty") - .HasColumnType("decimal(18,2)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("LineNumber") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialDesc") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("PurchaseOrderNo") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("PurchaseOrderNoItem") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("PurchaseOrderNoText") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("PurchasePriceNoTax") - .HasColumnType("decimal(18,2)"); - - b.Property("PurchaseType") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ReceiptQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SpareDate") - .HasColumnType("datetime2"); - - b.Property("TaxCode") - .HasColumnType("nvarchar(max)"); - - b.Property("TaxRate") - .HasColumnType("decimal(18,2)"); - - b.Property("Unit") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version", "PurchaseOrderNo", "MaterialCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_SparePart"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.VWSparePart.SparePartVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_SparePart_Version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsCustomerKanbanOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsCustomerKanbanOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsCustomerKanbanOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SapMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_WmsCustomerKanbanOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQCarOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsHQCarOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQCarOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("IsSparePart") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OrderBillNum") - .HasColumnType("nvarchar(max)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPutQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version"); - - b.ToTable("Set_WmsHQCarOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQFKanbanOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsHQFKanbanOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQFKanbanOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("PoLine") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_WmsHQFKanbanOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQFSharePartOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsHQFSharePartOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQFSharePartOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OrderBillNum") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPutQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_WmsHQFSharePartOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQHKanbanOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsHQHKanbanOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQHKanbanOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("PoLine") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_WmsHQHKanbanOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQHSharePartOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsHQHSharePartOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQHSharePartOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OrderBillNum") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPutQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_WmsHQHSharePartOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQMKanbanOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsHQMKanbanOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQMKanbanOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("PoLine") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version"); - - b.ToTable("Set_WmsHQMKanbanOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQMSharePartOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsHQMSharePartOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQMSharePartOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OrderBillNum") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPutQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version"); - - b.ToTable("Set_WmsHQMSharePartOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQWithOutKanbanOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsHQWithOutKanbanOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQWithOutKanbanOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsBack") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("OutputQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("RealityNumber") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SapMaterialCode") - .HasColumnType("nvarchar(max)"); - - b.Property("SockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Type") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsHQWithOutKanbanOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsJitOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsJitOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsJitOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ChassisNumber") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KennCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialGroup") - .HasMaxLength(200) - .HasColumnType("nvarchar(200)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentMaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("nvarchar(200)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_WmsJitOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsKanbanOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsKanbanOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsKanbanOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsKanbanOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsOneTimeSaleOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsOneTimeSaleOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsOneTimeSaleOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsBack") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("OrderBillNum") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutputQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("RealityNumber") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SapMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("SockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Type") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsOneTimeSaleOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsSharePart90OutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsSharePart90OutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsSharePart90OutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OrderBillNum") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPutQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsSharePart90OutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsSharePartOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsSharePartOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsSharePartOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OrderBillNum") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPutQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsSharePartOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsWithOutKanbanOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsWithOutKanbanOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsWithOutKanbanOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsBack") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("OutputQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("RealityNumber") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SapMaterialCode") - .HasColumnType("nvarchar(max)"); - - b.Property("SockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Type") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsWithOutKanbanOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS_KanBan.WMSKanBanSettle", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DeliveryOrderNo") - .HasColumnType("nvarchar(max)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("PartType") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Relation") - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("WMSActualGoodsDate") - .HasColumnType("datetime2"); - - b.Property("WMSDeliveryNote") - .HasColumnType("nvarchar(max)"); - - b.Property("WMSDeliveryQty") - .HasColumnType("decimal(18,2)"); - - b.HasKey("Id"); - - b.ToTable("Set_WMSKanBanSettle"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS_KanBan.WMSKanBanVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_WMSKanBanSettle_Version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS_SparePart.WMSSparePart", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MainFactory") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialDesc") - .HasMaxLength(500) - .HasColumnType("nvarchar(500)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("PurchaseOrderNo") - .HasColumnType("nvarchar(max)"); - - b.Property("ReceiptQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SapCode") - .HasColumnType("nvarchar(max)"); - - b.Property("SpareDate") - .HasColumnType("datetime2"); - - b.Property("Version") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WMSDeliveryNote") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Set_WMSSparePart"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WmsDetailDiffReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("Client") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialGroup") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialGroupCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("OutputQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark1") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("SwitchCode") - .HasColumnType("nvarchar(max)"); - - b.Property("Type") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Set_WmsDetailDiffReport"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WmsDetailReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AccountDate") - .HasColumnType("datetime2"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("Client") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ClientCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffAmt") - .HasColumnType("decimal(18,2)"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("LineNumber") - .HasColumnType("int"); - - b.Property("MaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialGroup") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialGroupCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("OutPutAmt") - .HasColumnType("decimal(18,2)"); - - b.Property("OutputQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark1") - .HasColumnType("nvarchar(max)"); - - b.Property("SaleCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SettleCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Type") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Set_WmsDetailReport"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WmsDetailWithCodeReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("Client") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EstimateType") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("LineNumber") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialGroup") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("OutputQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark1") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("SwitchCode") - .HasColumnType("nvarchar(max)"); - - b.Property("Type") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Set_WmsDetailWithCodeReport"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.EstimatedInventories.EstimatedInventoryDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNumber") - .HasColumnType("nvarchar(max)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("InvoiceQty") - .HasColumnType("decimal(18,2)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialDocument") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDocumentLine") - .HasColumnType("nvarchar(450)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("PostingDate") - .HasColumnType("datetime2"); - - b.Property("PurchaseDocument") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("PurchaseLine") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ReceiveQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Source") - .HasColumnType("nvarchar(max)"); - - b.Property("StorageLocation") - .IsRequired() - .HasColumnType("nvarchar(max)"); - - b.Property("SupplierCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("SupplierDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("MaterialDocument", "MaterialDocumentLine", "MaterialCode", "Version") - .IsUnique() - .HasFilter("[MaterialDocumentLine] IS NOT NULL"); - - b.ToTable("Set_estdetail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.EstimatedStockDiffReports.EstimatedStockDiffReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_estimate_stock_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.EstimatedStockDiffReports.EstimatedStockDiffReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EstimationQty") - .HasColumnType("decimal(18,2)"); - - b.Property("EstimationType") - .HasColumnType("nvarchar(max)"); - - b.Property("EstimationTypeDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("FgQty") - .HasColumnType("decimal(18,2)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("ItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("ItemDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("UnSettledQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId"); - - b.HasIndex("BranchId", "DocumentId", "ItemCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_estimate_stock_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.FISes.FIS", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AccountDate") - .HasColumnType("datetime2"); - - b.Property("BeginTime") - .HasColumnType("datetime2"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CP5Time") - .HasColumnType("datetime2"); - - b.Property("CP7Time") - .HasColumnType("datetime2"); - - b.Property("ChassisNumber") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ChassisNumber2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndTime") - .HasColumnType("datetime2"); - - b.Property("ErpMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend1") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("FISYear") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("ItemCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("KENNCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Model") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OrderBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SequenceNumber") - .HasColumnType("nvarchar(max)"); - - b.Property("SettleState") - .HasColumnType("int"); - - b.Property("SettledQty") - .HasColumnType("decimal(18,2)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("UnSettleVersion") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WMSBillNum") - .HasColumnType("nvarchar(max)"); - - b.Property("WMSState") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("ChassisNumber2", "KENNCode"); - - b.HasIndex("ChassisNumber2", "Version", "KENNCode", "ItemCode"); - - b.ToTable("Set_fis"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.FISes.FISExtend", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BeginTime") - .HasColumnType("datetime2"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CP5Time") - .HasColumnType("datetime2"); - - b.Property("CP7Time") - .HasColumnType("datetime2"); - - b.Property("ChassisNumber") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ChassisNumber2") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndTime") - .HasColumnType("datetime2"); - - b.Property("ErpMaterialCode") - .HasColumnType("nvarchar(max)"); - - b.Property("Extend1") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("FISYear") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("ItemCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("KENNCode") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Model") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OrderBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SequenceNumber") - .HasColumnType("nvarchar(max)"); - - b.Property("SettleState") - .HasColumnType("int"); - - b.Property("SettledQty") - .HasColumnType("decimal(18,2)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("ChassisNumber2", "Version", "Model", "ItemCode") - .IsUnique() - .HasFilter("[Model] IS NOT NULL"); - - b.ToTable("Set_fis_extend"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.FISes.FISVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BeginDate") - .HasColumnType("datetime2"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndDate") - .HasColumnType("datetime2"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Model") - .HasColumnType("nvarchar(max)"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_fis_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Inventories.InventoryDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AppraisalCategory") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("AppraisalDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndingInventoryQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("InputQty") - .HasColumnType("decimal(18,2)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("OpeningInventoryQty") - .HasColumnType("decimal(18,2)"); - - b.Property("OutputQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StorageLocation") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("StorageLocationDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("Unit") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version", "MaterialCode", "StorageLocation") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_inventory"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.JFCarConsigns.JFCarConsign", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasColumnType("nvarchar(450)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("PABillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Qty") - .HasPrecision(18, 2) - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasMaxLength(36) - .HasColumnType("int"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "MaterialCode", "PABillNum", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_jfcarconsign"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.JFCarKBs.JFCarKB", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("ConsignQty") - .HasColumnType("decimal(18,2)"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasColumnType("nvarchar(450)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InStockQty") - .HasPrecision(18, 2) - .HasColumnType("decimal(18,2)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("MaterialDesc") - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("OnLineDateTime") - .HasColumnType("datetime2"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasMaxLength(36) - .HasColumnType("int"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "MaterialCode", "BillNum", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_jfcarkb"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.JFNotConsignReports.JFNotConsignReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BeginTime") - .HasColumnType("datetime2"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndTime") - .HasColumnType("datetime2"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_jf_not_kb_consign_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.JFNotConsignReports.JFNotConsignReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .HasColumnType("nvarchar(450)"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConsignQty") - .HasColumnType("decimal(18,2)"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(450)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("InStockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasColumnType("nvarchar(450)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("OnLineDateTime") - .HasColumnType("datetime2"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId", "Version", "CustomCode", "MaterialCode", "BillNum") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_jf_not_kb_consign_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.MaterialRelationships.MaterialRelationship", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AppraisalCategory") - .HasColumnType("nvarchar(max)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ErpMaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialProperty") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SettleMaterialCode") - .HasColumnType("nvarchar(max)"); - - b.Property("ShipMaterailCode") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("ErpMaterialCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_relationship"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Prebatches.Prebatch", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CarCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KENNCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("YearKennCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_prebatch"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Reports.InvoiceSettledDiffs.InvoiceSettledDiff", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CP7ScrapQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ClaimQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffPrice") - .HasColumnType("decimal(18,2)"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("InvoiceAmt") - .HasColumnType("decimal(18,2)"); - - b.Property("InvoicePrice") - .HasColumnType("decimal(18,2)"); - - b.Property("InvoiceQty") - .HasColumnType("decimal(18,2)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SalePrice") - .HasColumnType("decimal(18,2)"); - - b.Property("SapMaterialCode") - .HasColumnType("nvarchar(max)"); - - b.Property("SapMaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("SettleQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Set_InvoiceSettledDiff"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Reports.InvoiceSettledDiffs.InvoiceSettledDiffVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("CustomCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("CustomName") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ProjectName") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_InvoiceSettledDiffVersion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SecondaryActuralAdjustmentReports.SecondaryActuralAdjustmentReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_act_adjustment_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SecondaryActuralAdjustmentReports.SecondaryActuralAdjustmentReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("Buyer") - .HasColumnType("nvarchar(max)"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("CustomItemDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomSubItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("CustomSubItemDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomSubItemPrice") - .HasColumnType("decimal(18,2)"); - - b.Property("CustomSubItemSumQty") - .HasColumnType("decimal(18,2)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ErpSubItemActualQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ErpSubItemCode") - .HasColumnType("nvarchar(max)"); - - b.Property("ErpSubItemQty") - .HasColumnType("decimal(18,2)"); - - b.Property("HasChanged") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("OfflineQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SumPriceNoTax") - .HasColumnType("decimal(18,2)"); - - b.Property("SumPriceWithTax") - .HasColumnType("decimal(18,2)"); - - b.Property("SupplierCode") - .HasColumnType("nvarchar(450)"); - - b.Property("SupplierDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("SupplyProportion") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId"); - - b.HasIndex("BranchId", "DocumentId", "Version", "CustomItemCode", "CustomSubItemCode", "SupplierCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_act_adjustment_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SecondaryActuralDiffReports.SecondaryActuralDiffReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_act_diff_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SecondaryActuralDiffReports.SecondaryActuralDiffReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("ActNoTaxAmount") - .HasColumnType("decimal(18,2)"); - - b.Property("ActPaymentPartyQty") - .HasColumnType("decimal(18,2)"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("CustomItemDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomSubItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("CustomSubItemDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffAmount") - .HasColumnType("decimal(18,2)"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ErpSubItemCode") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StaPaymentPartyQty") - .HasColumnType("decimal(18,2)"); - - b.Property("StdNoTaxAmount") - .HasColumnType("decimal(18,2)"); - - b.Property("SupplierCode") - .HasColumnType("nvarchar(450)"); - - b.Property("SupplierDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId"); - - b.HasIndex("BranchId", "DocumentId", "Version", "CustomItemCode", "CustomSubItemCode", "SupplierCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_act_diff_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SendUnsettledDiffReports.SendUnsettledDiffReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BeginTime") - .HasColumnType("datetime2"); - - b.Property("BeginVersion") - .HasColumnType("nvarchar(max)"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndTime") - .HasColumnType("datetime2"); - - b.Property("EndVersion") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_send_unsettled_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SendUnsettledDiffReports.SendUnsettledDiffReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("CP5Time") - .HasColumnType("datetime2"); - - b.Property("ChassisNumber") - .HasColumnType("nvarchar(450)"); - - b.Property("ChassisNumber2") - .HasColumnType("nvarchar(max)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("FISYear") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("ItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("ItemDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("KENNCode") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Model") - .HasColumnType("nvarchar(max)"); - - b.Property("OrderBillNum") - .HasColumnType("nvarchar(max)"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SequenceNumber") - .HasColumnType("nvarchar(max)"); - - b.Property("SettledQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Status") - .HasColumnType("int"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentId", "Version", "ChassisNumber", "ItemCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_send_unsettled_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockFisDiffReports.StockFisDiffReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_stock_fis_diff_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockFisDiffReports.StockFisDiffReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EstimationType") - .HasColumnType("nvarchar(max)"); - - b.Property("FisQty") - .HasColumnType("decimal(18,2)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("ItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("ItemDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId"); - - b.HasIndex("BranchId", "DocumentId", "ItemCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_stock_fis_diff_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockSettledDiffReports.StockSettledDiffReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_stock_settled_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockSettledDiffReports.StockSettledDiffReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EstimationType") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("ItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("ItemDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("R3SettledQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId"); - - b.HasIndex("BranchId", "DocumentId", "ItemCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_stock_settled_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockUnsettledDiffReports.StockUnsettledDiffReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_stock_unsettled_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockUnsettledDiffReports.StockUnsettledDiffReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EstimationType") - .HasColumnType("nvarchar(max)"); - - b.Property("FisUnSettledQty") - .HasColumnType("decimal(18,2)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("ItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("ItemDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId"); - - b.HasIndex("BranchId", "DocumentId", "ItemCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_stock_unsettled_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SupplierItemSetUps.SupplierItemSetUp", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasColumnType("nvarchar(450)"); - - b.Property("CustomerSupplierCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ErpItemCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ErpSupplierCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("ErpSupplierCode", "ErpItemCode", "CustomerSupplierCode", "CustomerCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_supplier_item_setup"); - }); - - modelBuilder.Entity("Win.Sfs.Shared.DomainBase.UpstreamDocument", b => - { - b.Property("UpstreamDocumentId") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BTNotConsignReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("BTSeqKBDiffReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("EstimatedStockDiffReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("JFNotConsignReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("SecondaryActuralAdjustmentReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("SecondaryActuralDiffReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("SendUnsettledDiffReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("Seq") - .HasColumnType("int"); - - b.Property("StockFisDiffReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("StockSettledDiffReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("StockUnsettledDiffReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("UpstreamDocumentNumber") - .HasColumnType("nvarchar(max)"); - - b.Property("UpstreamDocumentType") - .HasColumnType("int"); - - b.HasKey("UpstreamDocumentId"); - - b.HasIndex("BTNotConsignReportId"); - - b.HasIndex("BTSeqKBDiffReportId"); - - b.HasIndex("EstimatedStockDiffReportId"); - - b.HasIndex("JFNotConsignReportId"); - - b.HasIndex("SecondaryActuralAdjustmentReportId"); - - b.HasIndex("SecondaryActuralDiffReportId"); - - b.HasIndex("SendUnsettledDiffReportId"); - - b.HasIndex("StockFisDiffReportId"); - - b.HasIndex("StockSettledDiffReportId"); - - b.HasIndex("StockUnsettledDiffReportId"); - - b.ToTable("UpstreamDocument"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTNotConsignReports.BTNotConsignReportDetail", b => - { - b.HasOne("Win.Sfs.SettleAccount.BTNotConsignReports.BTNotConsignReport", null) - .WithMany("BTNotConsignReportDetails") - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.NoAction) - .IsRequired(); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTSeqKBDiffReports.BTSeqKBDiffReportDetail", b => - { - b.HasOne("Win.Sfs.SettleAccount.BTSeqKBDiffReports.BTSeqKBDiffReport", null) - .WithMany("BTSeqKBDiffReportDetails") - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.NoAction) - .IsRequired(); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.EstimatedStockDiffReports.EstimatedStockDiffReportDetail", b => - { - b.HasOne("Win.Sfs.SettleAccount.EstimatedStockDiffReports.EstimatedStockDiffReport", null) - .WithMany("EstimatedStockDiffReportDetails") - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.NoAction) - .IsRequired(); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.JFNotConsignReports.JFNotConsignReportDetail", b => - { - b.HasOne("Win.Sfs.SettleAccount.JFNotConsignReports.JFNotConsignReport", null) - .WithMany("JFNotConsignReportDetails") - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.NoAction) - .IsRequired(); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SecondaryActuralAdjustmentReports.SecondaryActuralAdjustmentReportDetail", b => - { - b.HasOne("Win.Sfs.SettleAccount.SecondaryActuralAdjustmentReports.SecondaryActuralAdjustmentReport", null) - .WithMany("SecondaryActuralAdjustmentReportDetails") - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.NoAction) - .IsRequired(); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SecondaryActuralDiffReports.SecondaryActuralDiffReportDetail", b => - { - b.HasOne("Win.Sfs.SettleAccount.SecondaryActuralDiffReports.SecondaryActuralDiffReport", null) - .WithMany("SecondaryActuralDiffReportDetails") - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.NoAction) - .IsRequired(); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockFisDiffReports.StockFisDiffReportDetail", b => - { - b.HasOne("Win.Sfs.SettleAccount.StockFisDiffReports.StockFisDiffReport", null) - .WithMany("StockFisDiffReportDetails") - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.NoAction) - .IsRequired(); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockSettledDiffReports.StockSettledDiffReportDetail", b => - { - b.HasOne("Win.Sfs.SettleAccount.StockSettledDiffReports.StockSettledDiffReport", null) - .WithMany("StockSettledDiffReportDetails") - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.NoAction) - .IsRequired(); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockUnsettledDiffReports.StockUnsettledDiffReportDetail", b => - { - b.HasOne("Win.Sfs.SettleAccount.StockUnsettledDiffReports.StockUnsettledDiffReport", null) - .WithMany("StockUnsettledDiffReportDetails") - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.NoAction) - .IsRequired(); - }); - - modelBuilder.Entity("Win.Sfs.Shared.DomainBase.UpstreamDocument", b => - { - b.HasOne("Win.Sfs.SettleAccount.BTNotConsignReports.BTNotConsignReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("BTNotConsignReportId"); - - b.HasOne("Win.Sfs.SettleAccount.BTSeqKBDiffReports.BTSeqKBDiffReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("BTSeqKBDiffReportId"); - - b.HasOne("Win.Sfs.SettleAccount.EstimatedStockDiffReports.EstimatedStockDiffReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("EstimatedStockDiffReportId"); - - b.HasOne("Win.Sfs.SettleAccount.JFNotConsignReports.JFNotConsignReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("JFNotConsignReportId"); - - b.HasOne("Win.Sfs.SettleAccount.SecondaryActuralAdjustmentReports.SecondaryActuralAdjustmentReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("SecondaryActuralAdjustmentReportId"); - - b.HasOne("Win.Sfs.SettleAccount.SecondaryActuralDiffReports.SecondaryActuralDiffReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("SecondaryActuralDiffReportId"); - - b.HasOne("Win.Sfs.SettleAccount.SendUnsettledDiffReports.SendUnsettledDiffReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("SendUnsettledDiffReportId"); - - b.HasOne("Win.Sfs.SettleAccount.StockFisDiffReports.StockFisDiffReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("StockFisDiffReportId"); - - b.HasOne("Win.Sfs.SettleAccount.StockSettledDiffReports.StockSettledDiffReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("StockSettledDiffReportId"); - - b.HasOne("Win.Sfs.SettleAccount.StockUnsettledDiffReports.StockUnsettledDiffReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("StockUnsettledDiffReportId"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTNotConsignReports.BTNotConsignReport", b => - { - b.Navigation("BTNotConsignReportDetails"); - - b.Navigation("UpstreamDocuments"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTSeqKBDiffReports.BTSeqKBDiffReport", b => - { - b.Navigation("BTSeqKBDiffReportDetails"); - - b.Navigation("UpstreamDocuments"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.EstimatedStockDiffReports.EstimatedStockDiffReport", b => - { - b.Navigation("EstimatedStockDiffReportDetails"); - - b.Navigation("UpstreamDocuments"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.JFNotConsignReports.JFNotConsignReport", b => - { - b.Navigation("JFNotConsignReportDetails"); - - b.Navigation("UpstreamDocuments"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SecondaryActuralAdjustmentReports.SecondaryActuralAdjustmentReport", b => - { - b.Navigation("SecondaryActuralAdjustmentReportDetails"); - - b.Navigation("UpstreamDocuments"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SecondaryActuralDiffReports.SecondaryActuralDiffReport", b => - { - b.Navigation("SecondaryActuralDiffReportDetails"); - - b.Navigation("UpstreamDocuments"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SendUnsettledDiffReports.SendUnsettledDiffReport", b => - { - b.Navigation("UpstreamDocuments"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockFisDiffReports.StockFisDiffReport", b => - { - b.Navigation("StockFisDiffReportDetails"); - - b.Navigation("UpstreamDocuments"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockSettledDiffReports.StockSettledDiffReport", b => - { - b.Navigation("StockSettledDiffReportDetails"); - - b.Navigation("UpstreamDocuments"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockUnsettledDiffReports.StockUnsettledDiffReport", b => - { - b.Navigation("StockUnsettledDiffReportDetails"); - - b.Navigation("UpstreamDocuments"); - }); -#pragma warning restore 612, 618 - } - } -} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20220413040718_5677.cs b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20220413040718_5677.cs deleted file mode 100644 index 3b3ddd67..00000000 --- a/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20220413040718_5677.cs +++ /dev/null @@ -1,6310 +0,0 @@ -using System; -using Microsoft.EntityFrameworkCore.Migrations; - -namespace Win.Sfs.SettleAccount.Migrations -{ - public partial class _5677 : Migration - { - protected override void Up(MigrationBuilder migrationBuilder) - { - migrationBuilder.CreateTable( - name: "Set_bom", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Factory = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ParentItemCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ParentItemDesc = table.Column(type: "nvarchar(2048)", maxLength: 2048, nullable: true), - ChildItemCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ChildItemDesc = table.Column(type: "nvarchar(2048)", maxLength: 2048, nullable: true), - ChildItemUom = table.Column(type: "nvarchar(max)", nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - OperateProcess = table.Column(type: "int", nullable: false), - ScrapPercent = table.Column(type: "decimal(18,2)", nullable: false), - BomType = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - EffectiveTime = table.Column(type: "datetime2", nullable: false), - ExpireTime = table.Column(type: "datetime2", nullable: false), - IssuePosition = table.Column(type: "nvarchar(max)", nullable: true), - BomLevel = table.Column(type: "int", nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_bom", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_bom_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Factory = table.Column(type: "nvarchar(max)", nullable: true), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_bom_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_BT_Car_Platform", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExternalKanbanNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - KanbanNumber = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - MaterialVoucherNo = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - BTCarKanBan = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - MaterialCode = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: false), - AcceptanceDate = table.Column(type: "datetime2", nullable: false), - Supplier = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - StorageLocation = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - StorageLocationDesc = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - AcceptanceNo = table.Column(type: "nvarchar(max)", nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - Extend = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_BT_Car_Platform", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_BT_Car_PlatformVersion", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_BT_Car_PlatformVersion", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_bt_not_kb_consign_report", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - DocumentType = table.Column(type: "int", nullable: false), - DocumentStatus = table.Column(type: "int", nullable: false), - BeginTime = table.Column(type: "datetime2", nullable: false), - EndTime = table.Column(type: "datetime2", nullable: false), - CustomCode = table.Column(type: "nvarchar(max)", nullable: true), - CustomName = table.Column(type: "nvarchar(max)", nullable: true), - CreatorName = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_bt_not_kb_consign_report", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_bt_seq_kb_diff_report", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - DocumentType = table.Column(type: "int", nullable: false), - DocumentStatus = table.Column(type: "int", nullable: false), - Year = table.Column(type: "nvarchar(max)", nullable: true), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(max)", nullable: true), - CustomCode = table.Column(type: "nvarchar(max)", nullable: true), - CustomName = table.Column(type: "nvarchar(max)", nullable: true), - CreatorName = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_bt_seq_kb_diff_report", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_btcarconsign", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(450)", nullable: false), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Qty = table.Column(type: "decimal(18,2)", precision: 18, scale: 2, nullable: false), - KBCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - State = table.Column(type: "int", maxLength: 36, nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_btcarconsign", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_btcarconsign_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_btcarconsign_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_btcarkb", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - DateTime = table.Column(type: "datetime2", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialCode = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - NeedQty = table.Column(type: "decimal(18,2)", precision: 18, scale: 2, nullable: false), - OrderKBCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ReceiveAreaCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ReceiveAreaName = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: true), - DeliveryDateTime = table.Column(type: "datetime2", nullable: false), - ConsignQty = table.Column(type: "decimal(18,2)", nullable: false), - State = table.Column(type: "int", maxLength: 36, nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_btcarkb", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_btcarkb_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - DateTime = table.Column(type: "datetime2", nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_btcarkb_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_btcarseq", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(1024)", maxLength: 1024, nullable: true), - DT = table.Column(type: "datetime2", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - VIN = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: false), - BarCode = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: true), - OnLineDateTime = table.Column(type: "datetime2", nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_btcarseq", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_btcarseq_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - DT = table.Column(type: "datetime2", nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_btcarseq_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_btcarseqfirst", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(max)", nullable: true), - DT = table.Column(type: "datetime2", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(450)", nullable: false), - BarCode = table.Column(type: "nvarchar(450)", nullable: true), - OnLineDateTime = table.Column(type: "datetime2", nullable: false), - VIN = table.Column(type: "nvarchar(450)", nullable: true), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_btcarseqfirst", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_btcarseqfirst_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - DT = table.Column(type: "datetime2", nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_btcarseqfirst_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_btcarseqsecond", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(max)", nullable: true), - DateTime = table.Column(type: "datetime2", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(450)", nullable: false), - PlanTypeRemark = table.Column(type: "nvarchar(max)", nullable: true), - Code = table.Column(type: "nvarchar(max)", nullable: true), - OnLineDateTime = table.Column(type: "datetime2", nullable: false), - VIN = table.Column(type: "nvarchar(450)", nullable: true), - EngineCode = table.Column(type: "nvarchar(max)", nullable: true), - BarCode = table.Column(type: "nvarchar(450)", nullable: true), - CarName = table.Column(type: "nvarchar(max)", nullable: true), - CMSerie = table.Column(type: "nvarchar(max)", nullable: true), - CMSerieRemark = table.Column(type: "nvarchar(max)", nullable: true), - CarType = table.Column(type: "nvarchar(max)", nullable: true), - Color = table.Column(type: "nvarchar(max)", nullable: true), - TopSeq = table.Column(type: "nvarchar(max)", nullable: true), - InColor = table.Column(type: "nvarchar(max)", nullable: true), - CarModelShort = table.Column(type: "nvarchar(max)", nullable: true), - OrderStateNum = table.Column(type: "nvarchar(max)", nullable: true), - StateName = table.Column(type: "nvarchar(max)", nullable: true), - SpecialCarTypeRemark = table.Column(type: "nvarchar(max)", nullable: true), - PlanDate = table.Column(type: "datetime2", nullable: false), - PlanSeq = table.Column(type: "int", nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_btcarseqsecond", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_btcarseqsecond_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - DateTime = table.Column(type: "datetime2", nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_btcarseqsecond_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_carmaterialconfig", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - CarCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_carmaterialconfig", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_code", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Project = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Value = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Description = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_code", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_control", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Version = table.Column(type: "nvarchar(max)", nullable: true), - State = table.Column(type: "int", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_control", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_customer", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Code = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Name = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - Description = table.Column(type: "nvarchar(2048)", maxLength: 2048, nullable: true), - Address = table.Column(type: "nvarchar(2048)", maxLength: 2048, nullable: true), - Contact = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: true), - ContactPhone = table.Column(type: "nvarchar(max)", nullable: true), - ContactEmail = table.Column(type: "nvarchar(max)", nullable: true), - ContactFax = table.Column(type: "nvarchar(max)", nullable: true), - TaxRate = table.Column(type: "decimal(18,2)", nullable: true), - CurrencyId = table.Column(type: "uniqueidentifier", nullable: false), - CustomerType = table.Column(type: "int", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_customer", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_customer_bom", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - CustomerCode = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - ParentItemCode = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - ChildItemCode = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - EffectiveTime = table.Column(type: "datetime2", nullable: false), - FailureTime = table.Column(type: "datetime2", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_customer_bom", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_customerlocation", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerDesc = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Storagelocation = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - State = table.Column(type: "int", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_customerlocation", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_estdetail", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialDocument = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialDocumentLine = table.Column(type: "nvarchar(450)", nullable: true), - BillNumber = table.Column(type: "nvarchar(max)", nullable: true), - PostingDate = table.Column(type: "datetime2", nullable: false), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - ReceiveQty = table.Column(type: "decimal(18,2)", nullable: false), - InvoiceQty = table.Column(type: "decimal(18,2)", nullable: false), - SupplierCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - SupplierDesc = table.Column(type: "nvarchar(max)", nullable: true), - PurchaseDocument = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - PurchaseLine = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Source = table.Column(type: "nvarchar(max)", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - StorageLocation = table.Column(type: "nvarchar(max)", nullable: false), - Factory = table.Column(type: "nvarchar(max)", nullable: true), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_estdetail", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_estimate_stock_report", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - DocumentType = table.Column(type: "int", nullable: false), - DocumentStatus = table.Column(type: "int", nullable: false), - Year = table.Column(type: "nvarchar(max)", nullable: true), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(max)", nullable: true), - CustomCode = table.Column(type: "nvarchar(max)", nullable: true), - CustomName = table.Column(type: "nvarchar(max)", nullable: true), - CreatorName = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_estimate_stock_report", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_estinventory_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Factory = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_estinventory_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_estsum", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Postingperiod = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - SupplierCode = table.Column(type: "nvarchar(max)", nullable: true), - SupplierDesc = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - PurchaseDocument = table.Column(type: "nvarchar(max)", nullable: true), - PurchaseLine = table.Column(type: "nvarchar(max)", nullable: true), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_estsum", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_estsum_verion", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Factory = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_estsum_verion", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_factory", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - CustomerCode = table.Column(type: "nvarchar(max)", nullable: true), - Code = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Desc = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_factory", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_fis", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - BeginTime = table.Column(type: "datetime2", nullable: false), - EndTime = table.Column(type: "datetime2", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - FISYear = table.Column(type: "nvarchar(max)", nullable: true), - OrderBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - KENNCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ItemCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Model = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Extend1 = table.Column(type: "nvarchar(max)", nullable: true), - ChassisNumber = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - CP5Time = table.Column(type: "datetime2", nullable: false), - SequenceNumber = table.Column(type: "nvarchar(max)", nullable: true), - ChassisNumber2 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - CP7Time = table.Column(type: "datetime2", nullable: false), - SettledQty = table.Column(type: "decimal(18,2)", nullable: false), - State = table.Column(type: "int", nullable: false), - SettleState = table.Column(type: "int", nullable: false), - ErpMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - WMSState = table.Column(type: "nvarchar(max)", nullable: true), - WMSBillNum = table.Column(type: "nvarchar(max)", nullable: true), - UnSettleVersion = table.Column(type: "nvarchar(max)", nullable: true), - AccountDate = table.Column(type: "datetime2", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_fis", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_fis_extend", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - BeginTime = table.Column(type: "datetime2", nullable: false), - EndTime = table.Column(type: "datetime2", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - FISYear = table.Column(type: "nvarchar(max)", nullable: true), - OrderBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - KENNCode = table.Column(type: "nvarchar(max)", nullable: true), - ItemCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Model = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Extend1 = table.Column(type: "nvarchar(max)", nullable: true), - ChassisNumber = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - CP5Time = table.Column(type: "datetime2", nullable: false), - SequenceNumber = table.Column(type: "nvarchar(max)", nullable: true), - ChassisNumber2 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CP7Time = table.Column(type: "datetime2", nullable: false), - SettledQty = table.Column(type: "decimal(18,2)", nullable: false), - State = table.Column(type: "int", nullable: false), - SettleState = table.Column(type: "int", nullable: false), - ErpMaterialCode = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_fis_extend", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_fis_th", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Factory = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - OrderBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ErpMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Model = table.Column(type: "nvarchar(450)", nullable: true), - KENNCode = table.Column(type: "nvarchar(max)", nullable: true), - ChassisNumber = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ChassisNumber2 = table.Column(type: "nvarchar(450)", nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - CP5Time = table.Column(type: "datetime2", nullable: false), - CP7Time = table.Column(type: "datetime2", nullable: false), - SettledQty = table.Column(type: "decimal(18,2)", nullable: false), - SequenceNumber = table.Column(type: "nvarchar(max)", nullable: true), - State = table.Column(type: "int", nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - BeginTime = table.Column(type: "datetime2", nullable: false), - EndTime = table.Column(type: "datetime2", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Extend1 = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_fis_th", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_fis_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Factory = table.Column(type: "nvarchar(max)", nullable: true), - Model = table.Column(type: "nvarchar(max)", nullable: true), - BeginDate = table.Column(type: "datetime2", nullable: false), - EndDate = table.Column(type: "datetime2", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_fis_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_HQ_F_Kanban", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - PoLine = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - MaterialCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - Kanban = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - IsAuto = table.Column(type: "nvarchar(max)", nullable: true), - Warehouse = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - WarehouseDesc = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - Supplier = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - State = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_HQ_F_Kanban", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_HQ_F_Platform", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExternalKanbanNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - KanbanNumber = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - MaterialVoucherNo = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - HQHKanBan = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - MaterialCode = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: false), - AcceptanceDate = table.Column(type: "datetime2", nullable: false), - Supplier = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - StorageLocation = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - StorageLocationDesc = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - AcceptanceNo = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - Extend = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_HQ_F_Platform", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_HQ_F_PlatformVersion", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_HQ_F_PlatformVersion", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_HQ_H_Kanban", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - BillDate = table.Column(type: "datetime2", nullable: false), - WmsBillNum = table.Column(type: "nvarchar(max)", nullable: true), - PoLine = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - MaterialCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - Kanban = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - IsAuto = table.Column(type: "nvarchar(max)", nullable: true), - Warehouse = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - WarehouseDesc = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - Supplier = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - State = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_HQ_H_Kanban", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_HQ_H_Platform", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExternalKanbanNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - KanbanNumber = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - MaterialVoucherNo = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - HQHKanBan = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - MaterialCode = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: false), - AcceptanceDate = table.Column(type: "datetime2", nullable: false), - Supplier = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - StorageLocation = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - StorageLocationDesc = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - AcceptanceNo = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - Extend = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_HQ_H_Platform", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_HQ_H_PlatformVersion", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_HQ_H_PlatformVersion", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_HQ_M_Kanban", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - PoLine = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - MaterialCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - Kanban = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - IsAuto = table.Column(type: "nvarchar(max)", nullable: true), - Warehouse = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - WarehouseDesc = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - Supplier = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - State = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_HQ_M_Kanban", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_HQ_M_Platform", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExternalKanbanNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - KanbanNumber = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - MaterialVoucherNo = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - HQMKanBan = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - MaterialCode = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: false), - AcceptanceDate = table.Column(type: "datetime2", nullable: false), - Supplier = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - StorageLocation = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - StorageLocationDesc = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - AcceptanceNo = table.Column(type: "nvarchar(max)", nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - Extend = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_HQ_M_Platform", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_HQ_M_PlatformVersion", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_HQ_M_PlatformVersion", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_hqcon", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialCode = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: true), - VIN = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - State = table.Column(type: "int", nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_hqcon", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_hqcon_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_hqcon_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_hqkb", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialCode = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: true), - NeedQty = table.Column(type: "decimal(18,2)", nullable: false), - KBCode = table.Column(type: "nvarchar(max)", nullable: true), - VIN = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: false), - ConsignQty = table.Column(type: "decimal(18,2)", nullable: false), - State = table.Column(type: "int", nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - CreateTime = table.Column(type: "datetime2", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_hqkb", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_hqkb_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_hqkb_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_hqspcon", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialCode = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: true), - KBCode = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - State = table.Column(type: "int", nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - KBCodeExtend = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_hqspcon", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_hqspcon_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_hqspcon_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_hqspkb", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialCode = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: true), - NeedQty = table.Column(type: "decimal(18,2)", nullable: false), - KBCode = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: false), - ConsignQty = table.Column(type: "decimal(18,2)", nullable: false), - State = table.Column(type: "int", nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - CreateTime = table.Column(type: "datetime2", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_hqspkb", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_hqspkb_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_hqspkb_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_importmap", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ProjectName = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - OldColumnName = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - NewColumnName = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - IsCheck = table.Column(type: "bit", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_importmap", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_inventory", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - AppraisalDesc = table.Column(type: "nvarchar(max)", nullable: true), - StorageLocationDesc = table.Column(type: "nvarchar(max)", nullable: true), - Price = table.Column(type: "decimal(18,2)", nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Factory = table.Column(type: "nvarchar(max)", nullable: true), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - InputQty = table.Column(type: "decimal(18,2)", nullable: false), - OutputQty = table.Column(type: "decimal(18,2)", nullable: false), - OpeningInventoryQty = table.Column(type: "decimal(18,2)", nullable: false), - EndingInventoryQty = table.Column(type: "decimal(18,2)", nullable: false), - AppraisalCategory = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - StorageLocation = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Unit = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_inventory", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_inventory_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Factory = table.Column(type: "nvarchar(450)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_inventory_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_Invoice", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - MaterialCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - MaterialDesc = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - Extend = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(1000)", maxLength: 1000, nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_Invoice", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_InvoiceSettledDiff", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(max)", nullable: true), - SapMaterialGroup = table.Column(type: "nvarchar(max)", nullable: true), - SapMaterialCode = table.Column(type: "nvarchar(max)", nullable: true), - Factory = table.Column(type: "nvarchar(max)", nullable: true), - MaterialCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - InvoiceQty = table.Column(type: "decimal(18,2)", nullable: false), - InvoiceAmt = table.Column(type: "decimal(18,2)", nullable: false), - InvoicePrice = table.Column(type: "decimal(18,2)", nullable: false), - SettleQty = table.Column(type: "decimal(18,2)", nullable: false), - DiffQty = table.Column(type: "decimal(18,2)", nullable: false), - CP7ScrapQty = table.Column(type: "decimal(18,2)", nullable: false), - ClaimQty = table.Column(type: "decimal(18,2)", nullable: false), - SalePrice = table.Column(type: "decimal(18,2)", nullable: false), - DiffPrice = table.Column(type: "decimal(18,2)", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_InvoiceSettledDiff", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_InvoiceSettledDiffVersion", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - CustomCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - CustomName = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - CreatorName = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ProjectName = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_InvoiceSettledDiffVersion", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_InvoiceVersion", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - CustomerCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_InvoiceVersion", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_item_invoice_price", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Factory = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - UM = table.Column(type: "nvarchar(max)", nullable: true), - Sales = table.Column(type: "nvarchar(max)", nullable: true), - SubAcct = table.Column(type: "nvarchar(max)", nullable: true), - CC = table.Column(type: "nvarchar(max)", nullable: true), - Backorder = table.Column(type: "nvarchar(max)", nullable: true), - Price = table.Column(type: "decimal(18,2)", nullable: false), - ExtendedPrice = table.Column(type: "decimal(18,2)", nullable: false), - ExtendedMargin = table.Column(type: "decimal(18,2)", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_item_invoice_price", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_item_invoice_price_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - CustomerCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_item_invoice_price_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_jf_not_kb_consign_report", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - DocumentType = table.Column(type: "int", nullable: false), - DocumentStatus = table.Column(type: "int", nullable: false), - BeginTime = table.Column(type: "datetime2", nullable: false), - EndTime = table.Column(type: "datetime2", nullable: false), - CustomCode = table.Column(type: "nvarchar(max)", nullable: true), - CustomName = table.Column(type: "nvarchar(max)", nullable: true), - CreatorName = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_jf_not_kb_consign_report", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_jfcarconsign", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(450)", nullable: false), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialDesc = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - Qty = table.Column(type: "decimal(18,2)", precision: 18, scale: 2, nullable: false), - PABillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - State = table.Column(type: "int", maxLength: 36, nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_jfcarconsign", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_jfcarconsign_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_jfcarconsign_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_jfcarkb", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(450)", nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - OnLineDateTime = table.Column(type: "datetime2", nullable: false), - MaterialCode = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - MaterialDesc = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: true), - InStockQty = table.Column(type: "decimal(18,2)", precision: 18, scale: 2, nullable: false), - State = table.Column(type: "int", maxLength: 36, nullable: false), - ConsignQty = table.Column(type: "decimal(18,2)", nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_jfcarkb", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_jfcarkb_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_jfcarkb_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_KanBanSettle", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(max)", nullable: true), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(450)", nullable: true), - Kanban = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: false), - Relation = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: true), - Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - MaterialCode = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: false), - PartType = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - SupplierCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - SettleInputDate = table.Column(type: "datetime2", nullable: false), - Batch = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Flag = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - SettleDate = table.Column(type: "datetime2", nullable: false), - State = table.Column(type: "nvarchar(max)", nullable: true), - Extend = table.Column(type: "nvarchar(max)", nullable: true), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_KanBanSettle", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_KanBanSettle_Version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_KanBanSettle_Version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_material", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Factory = table.Column(type: "nvarchar(max)", nullable: true), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - Unit = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - EstimateType = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - EstimateTypeDesc = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_material", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_MaterialRelationshipDetail", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - CustomerCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ErpMaterialCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - MaterialProperty = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - SettleMaterialCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ShipMaterailCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - AppraisalCategory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_MaterialRelationshipDetail", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_MaterialRelationshipVersion", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - CustomerCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_MaterialRelationshipVersion", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_prebatch", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - KENNCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - State = table.Column(type: "int", nullable: false), - CarCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - YearKennCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_prebatch", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_PriceList", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - CustomerCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(max)", nullable: true), - BeginDate = table.Column(type: "datetime2", nullable: false), - EndDate = table.Column(type: "datetime2", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - MaterialCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Type = table.Column(type: "int", nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_PriceList", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_PriceListBJ", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - CustomerCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(max)", nullable: true), - BeginDate = table.Column(type: "datetime2", nullable: false), - EndDate = table.Column(type: "datetime2", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - MaterialCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Type = table.Column(type: "int", nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_PriceListBJ", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_PriceListVersion", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_PriceListVersion", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_PriceListVersionBJ", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_PriceListVersionBJ", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_relationship", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ErpMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - MaterialProperty = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - SettleMaterialCode = table.Column(type: "nvarchar(max)", nullable: true), - ShipMaterailCode = table.Column(type: "nvarchar(max)", nullable: true), - AppraisalCategory = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_relationship", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_ScrapClaims", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Type = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - MaterialCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - MaterialDesc = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - Extend = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(1000)", maxLength: 1000, nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_ScrapClaims", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_ScrapClaims_Version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_ScrapClaims_Version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_sec_act_adjustment_report", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - DocumentType = table.Column(type: "int", nullable: false), - DocumentStatus = table.Column(type: "int", nullable: false), - Year = table.Column(type: "nvarchar(max)", nullable: true), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(max)", nullable: true), - CustomCode = table.Column(type: "nvarchar(max)", nullable: true), - CustomName = table.Column(type: "nvarchar(max)", nullable: true), - CreatorName = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_sec_act_adjustment_report", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_sec_act_diff_report", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - DocumentType = table.Column(type: "int", nullable: false), - DocumentStatus = table.Column(type: "int", nullable: false), - Year = table.Column(type: "nvarchar(max)", nullable: true), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(max)", nullable: true), - CustomCode = table.Column(type: "nvarchar(max)", nullable: true), - CustomName = table.Column(type: "nvarchar(max)", nullable: true), - CreatorName = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_sec_act_diff_report", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_sec_adj", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(450)", nullable: true), - CustomerMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerComponentCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - SupplierCode = table.Column(type: "nvarchar(450)", nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - Total = table.Column(type: "decimal(18,2)", nullable: false), - HasChanged = table.Column(type: "nvarchar(max)", nullable: true), - Buyer = table.Column(type: "nvarchar(max)", nullable: true), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_sec_adj", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_sec_adj_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Version = table.Column(type: "nvarchar(450)", nullable: true), - CustomerCode = table.Column(type: "nvarchar(max)", nullable: true), - Factory = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_sec_adj_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_sec_dis", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(max)", nullable: true), - SupplierCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - Total = table.Column(type: "decimal(18,2)", nullable: false), - HasChanged = table.Column(type: "nvarchar(max)", nullable: true), - Buyer = table.Column(type: "nvarchar(max)", nullable: true), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_sec_dis", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_sec_dis_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(max)", nullable: true), - Factory = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_sec_dis_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_sec_ratio", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Version = table.Column(type: "nvarchar(450)", nullable: true), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomItemCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomItemPrice = table.Column(type: "decimal(18,2)", nullable: false), - CustomSubItemCode = table.Column(type: "nvarchar(450)", nullable: true), - CustomSubItemPrice = table.Column(type: "decimal(18,2)", nullable: false), - SupplierCode = table.Column(type: "nvarchar(450)", nullable: true), - SupplierDesc = table.Column(type: "nvarchar(max)", nullable: true), - SupplyProportion = table.Column(type: "nvarchar(max)", nullable: true), - SupplyProportionPrice = table.Column(type: "decimal(18,2)", nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_sec_ratio", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_sec_ratio_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(max)", nullable: false), - Period = table.Column(type: "nvarchar(max)", nullable: false), - Version = table.Column(type: "nvarchar(450)", nullable: true), - CustomerCode = table.Column(type: "nvarchar(max)", nullable: true), - Factory = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_sec_ratio_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_SecMatchBase", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Index = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - IsSettle = table.Column(type: "nvarchar(max)", nullable: true), - Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Model = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - PartType = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - SettleMentPartCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - MaterialPartCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - SupplierCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - SupplierName = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - UsedNumber = table.Column(type: "decimal(18,2)", maxLength: 50, nullable: false), - SupplyProportion = table.Column(type: "decimal(18,2)", maxLength: 50, nullable: false), - Buyer = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Price = table.Column(type: "decimal(18,2)", nullable: false), - SettlementPrice = table.Column(type: "decimal(18,2)", nullable: false), - DiffPrice = table.Column(type: "decimal(18,2)", nullable: false), - SettlementNumber = table.Column(type: "decimal(18,2)", nullable: false), - TheoreticalSettlementNumber = table.Column(type: "decimal(18,2)", nullable: false), - RealSettlementNumber = table.Column(type: "decimal(18,2)", nullable: false), - RealSettlementPrice = table.Column(type: "decimal(18,2)", nullable: false), - IsDiffNumber = table.Column(type: "bit", nullable: false), - DiffAmount = table.Column(type: "decimal(18,2)", nullable: false), - Remark = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_SecMatchBase", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_send_unsettled_report", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - BeginVersion = table.Column(type: "nvarchar(max)", nullable: true), - EndVersion = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - DocumentType = table.Column(type: "int", nullable: false), - DocumentStatus = table.Column(type: "int", nullable: false), - BeginTime = table.Column(type: "datetime2", nullable: false), - EndTime = table.Column(type: "datetime2", nullable: false), - CustomCode = table.Column(type: "nvarchar(max)", nullable: true), - CustomName = table.Column(type: "nvarchar(max)", nullable: true), - CreatorName = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_send_unsettled_report", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_send_unsettled_report_detail", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(max)", nullable: true), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(450)", nullable: true), - DocumentId = table.Column(type: "uniqueidentifier", nullable: false), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - OrderBillNum = table.Column(type: "nvarchar(max)", nullable: true), - KENNCode = table.Column(type: "nvarchar(max)", nullable: true), - ItemCode = table.Column(type: "nvarchar(450)", nullable: true), - ItemDesc = table.Column(type: "nvarchar(max)", nullable: true), - Model = table.Column(type: "nvarchar(max)", nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - CP5Time = table.Column(type: "datetime2", nullable: false), - FISYear = table.Column(type: "nvarchar(max)", nullable: true), - Extend1 = table.Column(type: "nvarchar(max)", nullable: true), - SequenceNumber = table.Column(type: "nvarchar(max)", nullable: true), - ChassisNumber = table.Column(type: "nvarchar(450)", nullable: true), - ChassisNumber2 = table.Column(type: "nvarchar(max)", nullable: true), - SettledQty = table.Column(type: "decimal(18,2)", nullable: false), - Status = table.Column(type: "int", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_send_unsettled_report_detail", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_Settle", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - SettleYear = table.Column(type: "nvarchar(max)", nullable: true), - KENNCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ChassisNumber = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Model = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CP5A = table.Column(type: "datetime2", nullable: false), - CP7 = table.Column(type: "datetime2", nullable: false), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - SettlementID = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - SettlementSupplier = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - state = table.Column(type: "int", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_Settle", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_Settle_Version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Factory = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_Settle_Version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_settlement_part", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Factory = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Model = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - SettlementPartCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - SettlementPartDesc = table.Column(type: "nvarchar(2048)", maxLength: 2048, nullable: true), - Price = table.Column(type: "decimal(18,2)", nullable: false), - Uom = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_settlement_part", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_settlement_part_version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - CustomerCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_settlement_part_version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_SettlementCrossReference", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Model = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - PartType = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - SettlementMaterialCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - BomMaterialCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - MaterialDesc = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - SupplierCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - SupplierDesc = table.Column(type: "nvarchar(128)", maxLength: 128, nullable: true), - Buyer = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - CustomerCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_SettlementCrossReference", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_SettlementCrossReference_Version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - CustomerCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_SettlementCrossReference_Version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_SettlementPakAndSpareParts", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ApplicableFunction = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - SettlementPartCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - SettlementPartDesc = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ErpSparePartCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ErpSparePartName = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - PartType = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - QADCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - SupplierCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - SupplierName = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ProductLine = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - PerCarNum = table.Column(type: "decimal(18,2)", maxLength: 50, nullable: false), - Price = table.Column(type: "decimal(18,2)", maxLength: 50, nullable: false), - SupplyProportion = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - QuantityPrice = table.Column(type: "decimal(18,2)", maxLength: 50, nullable: false), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - CustomerCode = table.Column(type: "nvarchar(max)", nullable: true), - Model = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_SettlementPakAndSpareParts", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_SettlementPakAndSpareParts_Version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - CustomerCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_SettlementPakAndSpareParts_Version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_SparePart", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - LineNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - PurchaseType = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - PurchaseOrderNo = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - PurchaseOrderNoItem = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - PurchaseOrderNoText = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ReceiptQty = table.Column(type: "decimal(18,2)", nullable: false), - InvoicedQty = table.Column(type: "decimal(18,2)", nullable: false), - AmountNoTax = table.Column(type: "decimal(18,2)", nullable: false), - PurchasePriceNoTax = table.Column(type: "decimal(18,2)", nullable: false), - AccountNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - MaterialCode = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: false), - MaterialDesc = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - SpareDate = table.Column(type: "datetime2", nullable: false), - DeliveryOrderNo = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - DeliveryLineNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - BatchNo = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Unit = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - TaxRate = table.Column(type: "decimal(18,2)", nullable: false), - TaxCode = table.Column(type: "nvarchar(max)", nullable: true), - GermanInvoiceNo = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: true), - Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - FactoryName = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Extend = table.Column(type: "nvarchar(250)", maxLength: 250, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_SparePart", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_SparePart_Version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_SparePart_Version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_stock_fis_diff_report", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - DocumentType = table.Column(type: "int", nullable: false), - DocumentStatus = table.Column(type: "int", nullable: false), - Year = table.Column(type: "nvarchar(max)", nullable: true), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(max)", nullable: true), - CustomCode = table.Column(type: "nvarchar(max)", nullable: true), - CustomName = table.Column(type: "nvarchar(max)", nullable: true), - CreatorName = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_stock_fis_diff_report", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_stock_settled_report", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - DocumentType = table.Column(type: "int", nullable: false), - DocumentStatus = table.Column(type: "int", nullable: false), - Year = table.Column(type: "nvarchar(max)", nullable: true), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(max)", nullable: true), - CustomCode = table.Column(type: "nvarchar(max)", nullable: true), - CustomName = table.Column(type: "nvarchar(max)", nullable: true), - CreatorName = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_stock_settled_report", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_stock_unsettled_report", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - DocumentType = table.Column(type: "int", nullable: false), - DocumentStatus = table.Column(type: "int", nullable: false), - Year = table.Column(type: "nvarchar(max)", nullable: true), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(max)", nullable: true), - CustomCode = table.Column(type: "nvarchar(max)", nullable: true), - CustomName = table.Column(type: "nvarchar(max)", nullable: true), - CreatorName = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_stock_unsettled_report", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_supplier_item_setup", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ErpItemCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerSupplierCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ErpSupplierCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(450)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_supplier_item_setup", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_TaskJob", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Type = table.Column(type: "nvarchar(max)", nullable: true), - State = table.Column(type: "nvarchar(max)", nullable: true), - TaskId = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Name = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ActionName = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Error = table.Column(type: "nvarchar(max)", nullable: true), - Creator = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Email = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - FileName = table.Column(type: "nvarchar(500)", maxLength: 500, nullable: true), - RealFileName = table.Column(type: "nvarchar(500)", maxLength: 500, nullable: true), - RealDownFileName = table.Column(type: "nvarchar(500)", maxLength: 500, nullable: true), - DownFileName = table.Column(type: "nvarchar(500)", maxLength: 500, nullable: true), - ServiceName = table.Column(type: "nvarchar(300)", maxLength: 300, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_TaskJob", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_UnHQSettleAccount", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ExternalKanbanNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - KanbanNumber = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - MaterialVoucherNo = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - HQHKanBan = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - MaterialCode = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: false), - AcceptanceDate = table.Column(type: "datetime2", nullable: false), - Supplier = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - StorageLocation = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - StorageLocationDesc = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - AcceptanceNo = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - Extend = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_UnHQSettleAccount", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_UnHQSettleAccountVersion", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_UnHQSettleAccountVersion", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_Unsettle", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - SettleYear = table.Column(type: "nvarchar(max)", nullable: true), - KENNCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ChassisNumber = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Model = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CP5A = table.Column(type: "datetime2", nullable: false), - CP7 = table.Column(type: "datetime2", nullable: true), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - SettlementID = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - SettlementSupplier = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ParentId = table.Column(type: "uniqueidentifier", nullable: false), - state = table.Column(type: "int", nullable: false), - UnsettledReason = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_Unsettle", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_Unsettle_Version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Factory = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_Unsettle_Version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsCustomerKanbanOutPut", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Creator = table.Column(type: "nvarchar(max)", nullable: true), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsCustomerKanbanOutPut", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsCustomerKanbanOutPutDetial", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Kanban = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - WmsBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - SapMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - MaterialGroup = table.Column(type: "nvarchar(max)", nullable: true), - OutPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - InPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - State = table.Column(type: "int", nullable: false), - Extend1 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Extend2 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - TaskId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsCustomerKanbanOutPutDetial", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsDetailDiffReport", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(max)", nullable: true), - Client = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - Type = table.Column(type: "nvarchar(max)", nullable: true), - BillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - SwitchCode = table.Column(type: "nvarchar(max)", nullable: true), - MaterialCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - OutputQty = table.Column(type: "decimal(18,2)", nullable: false), - DiffQty = table.Column(type: "decimal(18,2)", nullable: false), - MaterialGroupCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - MaterialGroup = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - Remark1 = table.Column(type: "nvarchar(max)", nullable: true), - State = table.Column(type: "int", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsDetailDiffReport", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsDetailReport", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - LineNumber = table.Column(type: "int", nullable: false), - Version = table.Column(type: "nvarchar(max)", nullable: true), - Client = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - Type = table.Column(type: "nvarchar(max)", nullable: true), - SettleCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - SaleCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - ClientCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - BillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - MaterialCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - OutputQty = table.Column(type: "decimal(18,2)", nullable: false), - DiffQty = table.Column(type: "decimal(18,2)", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - OutPutAmt = table.Column(type: "decimal(18,2)", nullable: false), - DiffAmt = table.Column(type: "decimal(18,2)", nullable: false), - MaterialGroupCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - MaterialGroup = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - Remark1 = table.Column(type: "nvarchar(max)", nullable: true), - State = table.Column(type: "int", nullable: false), - AccountDate = table.Column(type: "datetime2", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsDetailReport", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsDetailWithCodeReport", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - LineNumber = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(max)", nullable: true), - Client = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - Type = table.Column(type: "nvarchar(max)", nullable: true), - BillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - SwitchCode = table.Column(type: "nvarchar(max)", nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - OutputQty = table.Column(type: "decimal(18,2)", nullable: false), - DiffQty = table.Column(type: "decimal(18,2)", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - MaterialCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - EstimateType = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - MaterialGroup = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: true), - Remark1 = table.Column(type: "nvarchar(max)", nullable: true), - State = table.Column(type: "int", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsDetailWithCodeReport", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsHQCarOutPut", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Creator = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsHQCarOutPut", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsHQCarOutPutDetial", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - IsSparePart = table.Column(type: "nvarchar(max)", nullable: true), - StockQty = table.Column(type: "decimal(18,2)", nullable: false), - OutPutQty = table.Column(type: "decimal(18,2)", nullable: false), - ParentMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - WmsBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - OrderBillNum = table.Column(type: "nvarchar(max)", nullable: true), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - MaterialGroup = table.Column(type: "nvarchar(max)", nullable: true), - OutPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - InPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - State = table.Column(type: "int", nullable: false), - Extend1 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Extend2 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - TaskId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsHQCarOutPutDetial", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsHQFKanbanOutPut", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Creator = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsHQFKanbanOutPut", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsHQFKanbanOutPutDetial", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - PoLine = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Kanban = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ParentMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - WmsBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - MaterialGroup = table.Column(type: "nvarchar(max)", nullable: true), - OutPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - InPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - State = table.Column(type: "int", nullable: false), - Extend1 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Extend2 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - TaskId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsHQFKanbanOutPutDetial", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsHQFSharePartOutPut", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Creator = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsHQFSharePartOutPut", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsHQFSharePartOutPutDetial", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - StockQty = table.Column(type: "decimal(18,2)", nullable: false), - ParentMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - WmsBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - OrderBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - MaterialGroup = table.Column(type: "nvarchar(max)", nullable: true), - OutPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - InPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - State = table.Column(type: "int", nullable: false), - Extend1 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Extend2 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - TaskId = table.Column(type: "uniqueidentifier", nullable: false), - OutPutQty = table.Column(type: "decimal(18,2)", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsHQFSharePartOutPutDetial", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsHQHKanbanOutPut", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Creator = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsHQHKanbanOutPut", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsHQHKanbanOutPutDetial", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - PoLine = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Kanban = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ParentMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - WmsBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - MaterialGroup = table.Column(type: "nvarchar(max)", nullable: true), - OutPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - InPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - State = table.Column(type: "int", nullable: false), - Extend1 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Extend2 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - TaskId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsHQHKanbanOutPutDetial", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsHQHSharePartOutPut", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Creator = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsHQHSharePartOutPut", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsHQHSharePartOutPutDetial", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - StockQty = table.Column(type: "decimal(18,2)", nullable: false), - ParentMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - WmsBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - OrderBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - MaterialGroup = table.Column(type: "nvarchar(max)", nullable: true), - OutPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - InPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - State = table.Column(type: "int", nullable: false), - Extend1 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Extend2 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - TaskId = table.Column(type: "uniqueidentifier", nullable: false), - OutPutQty = table.Column(type: "decimal(18,2)", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsHQHSharePartOutPutDetial", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsHQMKanbanOutPut", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Creator = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsHQMKanbanOutPut", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsHQMKanbanOutPutDetial", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - PoLine = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Kanban = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ParentMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - WmsBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - MaterialGroup = table.Column(type: "nvarchar(max)", nullable: true), - OutPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - InPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - State = table.Column(type: "int", nullable: false), - Extend1 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Extend2 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - TaskId = table.Column(type: "uniqueidentifier", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsHQMKanbanOutPutDetial", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsHQMSharePartOutPut", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Creator = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsHQMSharePartOutPut", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsHQMSharePartOutPutDetial", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - StockQty = table.Column(type: "decimal(18,2)", nullable: false), - ParentMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - WmsBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - OrderBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - MaterialGroup = table.Column(type: "nvarchar(max)", nullable: true), - OutPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - InPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - State = table.Column(type: "int", nullable: false), - Extend1 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Extend2 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - TaskId = table.Column(type: "uniqueidentifier", nullable: false), - OutPutQty = table.Column(type: "decimal(18,2)", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsHQMSharePartOutPutDetial", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsHQWithOutKanbanOutPut", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Creator = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsHQWithOutKanbanOutPut", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsHQWithOutKanbanOutPutDetial", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Type = table.Column(type: "nvarchar(max)", nullable: true), - SapMaterialCode = table.Column(type: "nvarchar(max)", nullable: true), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - IsBack = table.Column(type: "nvarchar(max)", nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - SockQty = table.Column(type: "decimal(18,2)", nullable: false), - RealityNumber = table.Column(type: "decimal(18,2)", nullable: false), - OutputQty = table.Column(type: "decimal(18,2)", nullable: false), - Extend = table.Column(type: "nvarchar(max)", nullable: true), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - State = table.Column(type: "int", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsHQWithOutKanbanOutPutDetial", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsJitOutPut", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Creator = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsJitOutPut", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsJitOutPutDetial", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - OutPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - InPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - State = table.Column(type: "int", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - Extend1 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Extend2 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - TaskId = table.Column(type: "uniqueidentifier", nullable: false), - WmsBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - KennCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ChassisNumber = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - ParentMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - MaterialDesc = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - MaterialGroup = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsJitOutPutDetial", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsKanbanOutPut", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Creator = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsKanbanOutPut", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsKanbanOutPutDetial", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ParentMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - WmsBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Kanban = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - MaterialGroup = table.Column(type: "nvarchar(max)", nullable: true), - OutPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - InPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - State = table.Column(type: "int", nullable: false), - Extend1 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Extend2 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - TaskId = table.Column(type: "uniqueidentifier", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsKanbanOutPutDetial", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WMSKanBanSettle", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(max)", nullable: true), - Kanban = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: false), - Relation = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: true), - MaterialCode = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: false), - PartType = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), - WMSDeliveryNote = table.Column(type: "nvarchar(max)", nullable: true), - WMSActualGoodsDate = table.Column(type: "datetime2", nullable: false), - WMSDeliveryQty = table.Column(type: "decimal(18,2)", nullable: false), - DeliveryOrderNo = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WMSKanBanSettle", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WMSKanBanSettle_Version", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WMSKanBanSettle_Version", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsOneTimeSaleOutPut", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Creator = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsOneTimeSaleOutPut", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsOneTimeSaleOutPutDetial", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Type = table.Column(type: "nvarchar(max)", nullable: true), - SapMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - IsBack = table.Column(type: "nvarchar(max)", nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - SockQty = table.Column(type: "decimal(18,2)", nullable: false), - RealityNumber = table.Column(type: "decimal(18,2)", nullable: false), - OutputQty = table.Column(type: "decimal(18,2)", nullable: false), - Extend = table.Column(type: "nvarchar(max)", nullable: true), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - State = table.Column(type: "int", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - OutPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - InPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ParentMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - WmsBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - OrderBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsOneTimeSaleOutPutDetial", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsSharePart90OutPut", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Creator = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsSharePart90OutPut", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsSharePart90OutPutDetial", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - StockQty = table.Column(type: "decimal(18,2)", nullable: false), - OutPutQty = table.Column(type: "decimal(18,2)", nullable: false), - ParentMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - WmsBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - OrderBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - MaterialGroup = table.Column(type: "nvarchar(max)", nullable: true), - OutPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - InPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - State = table.Column(type: "int", nullable: false), - Extend1 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Extend2 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - TaskId = table.Column(type: "uniqueidentifier", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsSharePart90OutPutDetial", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsSharePartOutPut", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Creator = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsSharePartOutPut", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsSharePartOutPutDetial", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ParentMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - WmsBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - OrderBillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - MaterialGroup = table.Column(type: "nvarchar(max)", nullable: true), - OutPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - InPut = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - State = table.Column(type: "int", nullable: false), - Extend1 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Extend2 = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - TaskId = table.Column(type: "uniqueidentifier", nullable: false), - StockQty = table.Column(type: "decimal(18,2)", nullable: false), - OutPutQty = table.Column(type: "decimal(18,2)", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsSharePartOutPutDetial", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WMSSparePart", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - SapCode = table.Column(type: "nvarchar(max)", nullable: true), - MainFactory = table.Column(type: "nvarchar(max)", nullable: true), - MaterialGroup = table.Column(type: "nvarchar(max)", nullable: true), - MaterialCode = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: false), - MaterialDesc = table.Column(type: "nvarchar(500)", maxLength: 500, nullable: true), - ReceiptQty = table.Column(type: "decimal(18,2)", nullable: false), - PurchaseOrderNo = table.Column(type: "nvarchar(max)", nullable: true), - WMSDeliveryNote = table.Column(type: "nvarchar(max)", nullable: true), - SpareDate = table.Column(type: "datetime2", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WMSSparePart", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsWithOutKanbanOutPut", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - Creator = table.Column(type: "nvarchar(max)", nullable: true), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsWithOutKanbanOutPut", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_WmsWithOutKanbanOutPutDetial", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Type = table.Column(type: "nvarchar(max)", nullable: true), - SapMaterialCode = table.Column(type: "nvarchar(max)", nullable: true), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - IsBack = table.Column(type: "nvarchar(max)", nullable: true), - Qty = table.Column(type: "decimal(18,2)", nullable: false), - SockQty = table.Column(type: "decimal(18,2)", nullable: false), - RealityNumber = table.Column(type: "decimal(18,2)", nullable: false), - OutputQty = table.Column(type: "decimal(18,2)", nullable: false), - Extend = table.Column(type: "nvarchar(max)", nullable: true), - BillNum = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), - State = table.Column(type: "int", nullable: false), - Price = table.Column(type: "decimal(18,2)", nullable: false), - Amt = table.Column(type: "decimal(18,2)", nullable: false), - ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_WmsWithOutKanbanOutPutDetial", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "Set_bt_not_kb_consign_report_detail", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - CustomCode = table.Column(type: "nvarchar(450)", nullable: true), - OrderKBCode = table.Column(type: "nvarchar(450)", nullable: true), - MaterialCode = table.Column(type: "nvarchar(450)", nullable: true), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - NeedQty = table.Column(type: "decimal(18,2)", nullable: false), - ConsignQty = table.Column(type: "decimal(18,2)", nullable: false), - DeliveryDateTime = table.Column(type: "datetime2", nullable: false), - State = table.Column(type: "int", nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - Year = table.Column(type: "nvarchar(max)", nullable: true), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(450)", nullable: true), - DocumentId = table.Column(type: "uniqueidentifier", nullable: false), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_bt_not_kb_consign_report_detail", x => x.Id); - table.ForeignKey( - name: "FK_Set_bt_not_kb_consign_report_detail_Set_bt_not_kb_consign_report_DocumentId", - column: x => x.DocumentId, - principalTable: "Set_bt_not_kb_consign_report", - principalColumn: "Id"); - }); - - migrationBuilder.CreateTable( - name: "Set_bt_seq_kb_diff_report_detail", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - CustomCode = table.Column(type: "nvarchar(450)", nullable: true), - DT = table.Column(type: "datetime2", nullable: false), - MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), - SeqQty = table.Column(type: "decimal(18,2)", nullable: false), - KBQty = table.Column(type: "decimal(18,2)", nullable: false), - DiffQty = table.Column(type: "decimal(18,2)", nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - Year = table.Column(type: "nvarchar(max)", nullable: true), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(450)", nullable: true), - DocumentId = table.Column(type: "uniqueidentifier", nullable: false), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_bt_seq_kb_diff_report_detail", x => x.Id); - table.ForeignKey( - name: "FK_Set_bt_seq_kb_diff_report_detail_Set_bt_seq_kb_diff_report_DocumentId", - column: x => x.DocumentId, - principalTable: "Set_bt_seq_kb_diff_report", - principalColumn: "Id"); - }); - - migrationBuilder.CreateTable( - name: "Set_estimate_stock_report_detail", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ItemCode = table.Column(type: "nvarchar(450)", nullable: true), - ItemDesc = table.Column(type: "nvarchar(max)", nullable: true), - EstimationType = table.Column(type: "nvarchar(max)", nullable: true), - EstimationTypeDesc = table.Column(type: "nvarchar(max)", nullable: true), - EstimationQty = table.Column(type: "decimal(18,2)", nullable: false), - StockQty = table.Column(type: "decimal(18,2)", nullable: false), - FgQty = table.Column(type: "decimal(18,2)", nullable: false), - UnSettledQty = table.Column(type: "decimal(18,2)", nullable: false), - DiffQty = table.Column(type: "decimal(18,2)", nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - Year = table.Column(type: "nvarchar(max)", nullable: true), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(max)", nullable: true), - DocumentId = table.Column(type: "uniqueidentifier", nullable: false), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_estimate_stock_report_detail", x => x.Id); - table.ForeignKey( - name: "FK_Set_estimate_stock_report_detail_Set_estimate_stock_report_DocumentId", - column: x => x.DocumentId, - principalTable: "Set_estimate_stock_report", - principalColumn: "Id"); - }); - - migrationBuilder.CreateTable( - name: "Set_jf_not_kb_consign_report_detail", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - CustomCode = table.Column(type: "nvarchar(450)", nullable: true), - BillNum = table.Column(type: "nvarchar(450)", nullable: true), - OnLineDateTime = table.Column(type: "datetime2", nullable: false), - MaterialCode = table.Column(type: "nvarchar(450)", nullable: true), - MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), - InStockQty = table.Column(type: "decimal(18,2)", nullable: false), - State = table.Column(type: "int", nullable: false), - ConsignQty = table.Column(type: "decimal(18,2)", nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - Year = table.Column(type: "nvarchar(max)", nullable: true), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(450)", nullable: true), - DocumentId = table.Column(type: "uniqueidentifier", nullable: false), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_jf_not_kb_consign_report_detail", x => x.Id); - table.ForeignKey( - name: "FK_Set_jf_not_kb_consign_report_detail_Set_jf_not_kb_consign_report_DocumentId", - column: x => x.DocumentId, - principalTable: "Set_jf_not_kb_consign_report", - principalColumn: "Id"); - }); - - migrationBuilder.CreateTable( - name: "Set_sec_act_adjustment_report_detail", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - Year = table.Column(type: "nvarchar(max)", nullable: true), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(450)", nullable: true), - DocumentId = table.Column(type: "uniqueidentifier", nullable: false), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), - CustomItemCode = table.Column(type: "nvarchar(450)", nullable: true), - CustomItemDesc = table.Column(type: "nvarchar(max)", nullable: true), - OfflineQty = table.Column(type: "decimal(18,2)", nullable: false), - CustomSubItemCode = table.Column(type: "nvarchar(450)", nullable: true), - ErpSubItemCode = table.Column(type: "nvarchar(max)", nullable: true), - CustomSubItemDesc = table.Column(type: "nvarchar(max)", nullable: true), - ErpSubItemQty = table.Column(type: "decimal(18,2)", nullable: false), - ErpSubItemActualQty = table.Column(type: "decimal(18,2)", nullable: false), - SupplierCode = table.Column(type: "nvarchar(450)", nullable: true), - SupplierDesc = table.Column(type: "nvarchar(max)", nullable: true), - SupplyProportion = table.Column(type: "nvarchar(max)", nullable: true), - CustomSubItemPrice = table.Column(type: "decimal(18,2)", nullable: false), - CustomSubItemSumQty = table.Column(type: "decimal(18,2)", nullable: false), - SumPriceNoTax = table.Column(type: "decimal(18,2)", nullable: false), - SumPriceWithTax = table.Column(type: "decimal(18,2)", nullable: false), - HasChanged = table.Column(type: "nvarchar(max)", nullable: true), - Buyer = table.Column(type: "nvarchar(max)", nullable: true), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_sec_act_adjustment_report_detail", x => x.Id); - table.ForeignKey( - name: "FK_Set_sec_act_adjustment_report_detail_Set_sec_act_adjustment_report_DocumentId", - column: x => x.DocumentId, - principalTable: "Set_sec_act_adjustment_report", - principalColumn: "Id"); - }); - - migrationBuilder.CreateTable( - name: "Set_sec_act_diff_report_detail", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - CustomItemCode = table.Column(type: "nvarchar(450)", nullable: true), - CustomItemDesc = table.Column(type: "nvarchar(max)", nullable: true), - CustomSubItemCode = table.Column(type: "nvarchar(450)", nullable: true), - ErpSubItemCode = table.Column(type: "nvarchar(max)", nullable: true), - CustomSubItemDesc = table.Column(type: "nvarchar(max)", nullable: true), - SupplierCode = table.Column(type: "nvarchar(450)", nullable: true), - SupplierDesc = table.Column(type: "nvarchar(max)", nullable: true), - StaPaymentPartyQty = table.Column(type: "decimal(18,2)", nullable: false), - ActPaymentPartyQty = table.Column(type: "decimal(18,2)", nullable: false), - DiffQty = table.Column(type: "decimal(18,2)", nullable: false), - StdNoTaxAmount = table.Column(type: "decimal(18,2)", nullable: false), - ActNoTaxAmount = table.Column(type: "decimal(18,2)", nullable: false), - DiffAmount = table.Column(type: "decimal(18,2)", nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - Year = table.Column(type: "nvarchar(max)", nullable: true), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(450)", nullable: true), - DocumentId = table.Column(type: "uniqueidentifier", nullable: false), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_sec_act_diff_report_detail", x => x.Id); - table.ForeignKey( - name: "FK_Set_sec_act_diff_report_detail_Set_sec_act_diff_report_DocumentId", - column: x => x.DocumentId, - principalTable: "Set_sec_act_diff_report", - principalColumn: "Id"); - }); - - migrationBuilder.CreateTable( - name: "Set_stock_fis_diff_report_detail", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ItemCode = table.Column(type: "nvarchar(450)", nullable: true), - ItemDesc = table.Column(type: "nvarchar(max)", nullable: true), - EstimationType = table.Column(type: "nvarchar(max)", nullable: true), - CustomCode = table.Column(type: "nvarchar(max)", nullable: true), - FisQty = table.Column(type: "decimal(18,2)", nullable: false), - StockQty = table.Column(type: "decimal(18,2)", nullable: false), - DiffQty = table.Column(type: "decimal(18,2)", nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - Year = table.Column(type: "nvarchar(max)", nullable: true), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(max)", nullable: true), - DocumentId = table.Column(type: "uniqueidentifier", nullable: false), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_stock_fis_diff_report_detail", x => x.Id); - table.ForeignKey( - name: "FK_Set_stock_fis_diff_report_detail_Set_stock_fis_diff_report_DocumentId", - column: x => x.DocumentId, - principalTable: "Set_stock_fis_diff_report", - principalColumn: "Id"); - }); - - migrationBuilder.CreateTable( - name: "Set_stock_settled_report_detail", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ItemCode = table.Column(type: "nvarchar(450)", nullable: true), - ItemDesc = table.Column(type: "nvarchar(max)", nullable: true), - EstimationType = table.Column(type: "nvarchar(max)", nullable: true), - CustomCode = table.Column(type: "nvarchar(max)", nullable: true), - R3SettledQty = table.Column(type: "decimal(18,2)", nullable: false), - StockQty = table.Column(type: "decimal(18,2)", nullable: false), - DiffQty = table.Column(type: "decimal(18,2)", nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - Year = table.Column(type: "nvarchar(max)", nullable: true), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(max)", nullable: true), - DocumentId = table.Column(type: "uniqueidentifier", nullable: false), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_stock_settled_report_detail", x => x.Id); - table.ForeignKey( - name: "FK_Set_stock_settled_report_detail_Set_stock_settled_report_DocumentId", - column: x => x.DocumentId, - principalTable: "Set_stock_settled_report", - principalColumn: "Id"); - }); - - migrationBuilder.CreateTable( - name: "Set_stock_unsettled_report_detail", - columns: table => new - { - Id = table.Column(type: "uniqueidentifier", nullable: false), - ItemCode = table.Column(type: "nvarchar(450)", nullable: true), - ItemDesc = table.Column(type: "nvarchar(max)", nullable: true), - CustomCode = table.Column(type: "nvarchar(max)", nullable: true), - EstimationType = table.Column(type: "nvarchar(max)", nullable: true), - FisUnSettledQty = table.Column(type: "decimal(18,2)", nullable: false), - StockQty = table.Column(type: "decimal(18,2)", nullable: false), - DiffQty = table.Column(type: "decimal(18,2)", nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true), - BranchId = table.Column(type: "uniqueidentifier", maxLength: 36, nullable: false), - Enabled = table.Column(type: "bit", nullable: false), - Remark = table.Column(type: "nvarchar(max)", nullable: true), - Year = table.Column(type: "nvarchar(max)", nullable: true), - Period = table.Column(type: "nvarchar(max)", nullable: true), - Version = table.Column(type: "nvarchar(max)", nullable: true), - DocumentId = table.Column(type: "uniqueidentifier", nullable: false), - DocumentNumber = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_Set_stock_unsettled_report_detail", x => x.Id); - table.ForeignKey( - name: "FK_Set_stock_unsettled_report_detail_Set_stock_unsettled_report_DocumentId", - column: x => x.DocumentId, - principalTable: "Set_stock_unsettled_report", - principalColumn: "Id"); - }); - - migrationBuilder.CreateTable( - name: "UpstreamDocument", - columns: table => new - { - UpstreamDocumentId = table.Column(type: "uniqueidentifier", nullable: false), - UpstreamDocumentNumber = table.Column(type: "nvarchar(max)", nullable: true), - UpstreamDocumentType = table.Column(type: "int", nullable: false), - Seq = table.Column(type: "int", nullable: false), - BTNotConsignReportId = table.Column(type: "uniqueidentifier", nullable: true), - BTSeqKBDiffReportId = table.Column(type: "uniqueidentifier", nullable: true), - EstimatedStockDiffReportId = table.Column(type: "uniqueidentifier", nullable: true), - JFNotConsignReportId = table.Column(type: "uniqueidentifier", nullable: true), - SecondaryActuralAdjustmentReportId = table.Column(type: "uniqueidentifier", nullable: true), - SecondaryActuralDiffReportId = table.Column(type: "uniqueidentifier", nullable: true), - SendUnsettledDiffReportId = table.Column(type: "uniqueidentifier", nullable: true), - StockFisDiffReportId = table.Column(type: "uniqueidentifier", nullable: true), - StockSettledDiffReportId = table.Column(type: "uniqueidentifier", nullable: true), - StockUnsettledDiffReportId = table.Column(type: "uniqueidentifier", nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_UpstreamDocument", x => x.UpstreamDocumentId); - table.ForeignKey( - name: "FK_UpstreamDocument_Set_bt_not_kb_consign_report_BTNotConsignReportId", - column: x => x.BTNotConsignReportId, - principalTable: "Set_bt_not_kb_consign_report", - principalColumn: "Id", - onDelete: ReferentialAction.Restrict); - table.ForeignKey( - name: "FK_UpstreamDocument_Set_bt_seq_kb_diff_report_BTSeqKBDiffReportId", - column: x => x.BTSeqKBDiffReportId, - principalTable: "Set_bt_seq_kb_diff_report", - principalColumn: "Id", - onDelete: ReferentialAction.Restrict); - table.ForeignKey( - name: "FK_UpstreamDocument_Set_estimate_stock_report_EstimatedStockDiffReportId", - column: x => x.EstimatedStockDiffReportId, - principalTable: "Set_estimate_stock_report", - principalColumn: "Id", - onDelete: ReferentialAction.Restrict); - table.ForeignKey( - name: "FK_UpstreamDocument_Set_jf_not_kb_consign_report_JFNotConsignReportId", - column: x => x.JFNotConsignReportId, - principalTable: "Set_jf_not_kb_consign_report", - principalColumn: "Id", - onDelete: ReferentialAction.Restrict); - table.ForeignKey( - name: "FK_UpstreamDocument_Set_sec_act_adjustment_report_SecondaryActuralAdjustmentReportId", - column: x => x.SecondaryActuralAdjustmentReportId, - principalTable: "Set_sec_act_adjustment_report", - principalColumn: "Id", - onDelete: ReferentialAction.Restrict); - table.ForeignKey( - name: "FK_UpstreamDocument_Set_sec_act_diff_report_SecondaryActuralDiffReportId", - column: x => x.SecondaryActuralDiffReportId, - principalTable: "Set_sec_act_diff_report", - principalColumn: "Id", - onDelete: ReferentialAction.Restrict); - table.ForeignKey( - name: "FK_UpstreamDocument_Set_send_unsettled_report_SendUnsettledDiffReportId", - column: x => x.SendUnsettledDiffReportId, - principalTable: "Set_send_unsettled_report", - principalColumn: "Id", - onDelete: ReferentialAction.Restrict); - table.ForeignKey( - name: "FK_UpstreamDocument_Set_stock_fis_diff_report_StockFisDiffReportId", - column: x => x.StockFisDiffReportId, - principalTable: "Set_stock_fis_diff_report", - principalColumn: "Id", - onDelete: ReferentialAction.Restrict); - table.ForeignKey( - name: "FK_UpstreamDocument_Set_stock_settled_report_StockSettledDiffReportId", - column: x => x.StockSettledDiffReportId, - principalTable: "Set_stock_settled_report", - principalColumn: "Id", - onDelete: ReferentialAction.Restrict); - table.ForeignKey( - name: "FK_UpstreamDocument_Set_stock_unsettled_report_StockUnsettledDiffReportId", - column: x => x.StockUnsettledDiffReportId, - principalTable: "Set_stock_unsettled_report", - principalColumn: "Id", - onDelete: ReferentialAction.Restrict); - }); - - migrationBuilder.CreateIndex( - name: "IX_Set_bom_ParentItemCode_ChildItemCode_Version", - table: "Set_bom", - columns: new[] { "ParentItemCode", "ChildItemCode", "Version" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_BT_Car_PlatformVersion_Version", - table: "Set_BT_Car_PlatformVersion", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_bt_not_kb_consign_report_BranchId_DocumentNumber", - table: "Set_bt_not_kb_consign_report", - columns: new[] { "BranchId", "DocumentNumber" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_bt_not_kb_consign_report_detail_BranchId_DocumentId_Version_CustomCode_MaterialCode_OrderKBCode", - table: "Set_bt_not_kb_consign_report_detail", - columns: new[] { "BranchId", "DocumentId", "Version", "CustomCode", "MaterialCode", "OrderKBCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_bt_not_kb_consign_report_detail_DocumentId", - table: "Set_bt_not_kb_consign_report_detail", - column: "DocumentId"); - - migrationBuilder.CreateIndex( - name: "IX_Set_bt_seq_kb_diff_report_BranchId_DocumentNumber", - table: "Set_bt_seq_kb_diff_report", - columns: new[] { "BranchId", "DocumentNumber" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_bt_seq_kb_diff_report_detail_BranchId_DocumentId_Version_DT_CustomCode_MaterialCode", - table: "Set_bt_seq_kb_diff_report_detail", - columns: new[] { "BranchId", "DocumentId", "Version", "DT", "CustomCode", "MaterialCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_bt_seq_kb_diff_report_detail_DocumentId", - table: "Set_bt_seq_kb_diff_report_detail", - column: "DocumentId"); - - migrationBuilder.CreateIndex( - name: "IX_Set_btcarconsign_CustomerCode_MaterialCode_KBCode_Version", - table: "Set_btcarconsign", - columns: new[] { "CustomerCode", "MaterialCode", "KBCode", "Version" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_btcarkb_CustomerCode_MaterialCode_OrderKBCode_Version", - table: "Set_btcarkb", - columns: new[] { "CustomerCode", "MaterialCode", "OrderKBCode", "Version" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_btcarseq_CustomerCode_BarCode_VIN_Version", - table: "Set_btcarseq", - columns: new[] { "CustomerCode", "BarCode", "VIN", "Version" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_btcarseqfirst_CustomerCode_BarCode_VIN_Version", - table: "Set_btcarseqfirst", - columns: new[] { "CustomerCode", "BarCode", "VIN", "Version" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_btcarseqsecond_CustomerCode_BarCode_VIN_Version", - table: "Set_btcarseqsecond", - columns: new[] { "CustomerCode", "BarCode", "VIN", "Version" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_carmaterialconfig_CarCode_MaterialCode", - table: "Set_carmaterialconfig", - columns: new[] { "CarCode", "MaterialCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_code_Project_Value", - table: "Set_code", - columns: new[] { "Project", "Value" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_control_Year_Period", - table: "Set_control", - columns: new[] { "Year", "Period" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_customer_BranchId_Code", - table: "Set_customer", - columns: new[] { "BranchId", "Code" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_customer_bom_BranchId_CustomerCode_ParentItemCode_ChildItemCode", - table: "Set_customer_bom", - columns: new[] { "BranchId", "CustomerCode", "ParentItemCode", "ChildItemCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_customerlocation_Storagelocation_CustomerCode", - table: "Set_customerlocation", - columns: new[] { "Storagelocation", "CustomerCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_estdetail_MaterialDocument_MaterialDocumentLine_MaterialCode_Version", - table: "Set_estdetail", - columns: new[] { "MaterialDocument", "MaterialDocumentLine", "MaterialCode", "Version" }, - unique: true, - filter: "[MaterialDocumentLine] IS NOT NULL"); - - migrationBuilder.CreateIndex( - name: "IX_Set_estimate_stock_report_BranchId_DocumentNumber", - table: "Set_estimate_stock_report", - columns: new[] { "BranchId", "DocumentNumber" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_estimate_stock_report_detail_BranchId_DocumentId_ItemCode", - table: "Set_estimate_stock_report_detail", - columns: new[] { "BranchId", "DocumentId", "ItemCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_estimate_stock_report_detail_DocumentId", - table: "Set_estimate_stock_report_detail", - column: "DocumentId"); - - migrationBuilder.CreateIndex( - name: "IX_Set_factory_Code", - table: "Set_factory", - column: "Code", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_fis_ChassisNumber2_KENNCode", - table: "Set_fis", - columns: new[] { "ChassisNumber2", "KENNCode" }); - - migrationBuilder.CreateIndex( - name: "IX_Set_fis_ChassisNumber2_Version_KENNCode_ItemCode", - table: "Set_fis", - columns: new[] { "ChassisNumber2", "Version", "KENNCode", "ItemCode" }); - - migrationBuilder.CreateIndex( - name: "IX_Set_fis_extend_ChassisNumber2_Version_Model_ItemCode", - table: "Set_fis_extend", - columns: new[] { "ChassisNumber2", "Version", "Model", "ItemCode" }, - unique: true, - filter: "[Model] IS NOT NULL"); - - migrationBuilder.CreateIndex( - name: "IX_Set_fis_th_ChassisNumber2_Version_Model_MaterialCode", - table: "Set_fis_th", - columns: new[] { "ChassisNumber2", "Version", "Model", "MaterialCode" }, - unique: true, - filter: "[ChassisNumber2] IS NOT NULL AND [Model] IS NOT NULL"); - - migrationBuilder.CreateIndex( - name: "IX_Set_HQ_F_Kanban_Kanban_PoLine_MaterialCode", - table: "Set_HQ_F_Kanban", - columns: new[] { "Kanban", "PoLine", "MaterialCode" }); - - migrationBuilder.CreateIndex( - name: "IX_Set_HQ_F_PlatformVersion_Version", - table: "Set_HQ_F_PlatformVersion", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_HQ_H_Kanban_Kanban_PoLine_MaterialCode", - table: "Set_HQ_H_Kanban", - columns: new[] { "Kanban", "PoLine", "MaterialCode" }); - - migrationBuilder.CreateIndex( - name: "IX_Set_HQ_H_PlatformVersion_Version", - table: "Set_HQ_H_PlatformVersion", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_HQ_M_Kanban_Kanban_PoLine_MaterialCode", - table: "Set_HQ_M_Kanban", - columns: new[] { "Kanban", "PoLine", "MaterialCode" }); - - migrationBuilder.CreateIndex( - name: "IX_Set_HQ_M_PlatformVersion_Version", - table: "Set_HQ_M_PlatformVersion", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_hqcon_CustomerCode_MaterialCode_VIN_Version", - table: "Set_hqcon", - columns: new[] { "CustomerCode", "MaterialCode", "VIN", "Version" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_hqkb_CustomerCode_MaterialCode_VIN_Version", - table: "Set_hqkb", - columns: new[] { "CustomerCode", "MaterialCode", "VIN", "Version" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_hqspcon_CustomerCode_MaterialCode_KBCode_KBCodeExtend_Version", - table: "Set_hqspcon", - columns: new[] { "CustomerCode", "MaterialCode", "KBCode", "KBCodeExtend", "Version" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_hqspkb_CustomerCode_MaterialCode_KBCode_Version", - table: "Set_hqspkb", - columns: new[] { "CustomerCode", "MaterialCode", "KBCode", "Version" }, - unique: true, - filter: "[MaterialCode] IS NOT NULL"); - - migrationBuilder.CreateIndex( - name: "IX_Set_inventory_Version_MaterialCode_StorageLocation", - table: "Set_inventory", - columns: new[] { "Version", "MaterialCode", "StorageLocation" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_inventory_version_Version_Factory", - table: "Set_inventory_version", - columns: new[] { "Version", "Factory" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_item_invoice_price_Period_Version_MaterialCode", - table: "Set_item_invoice_price", - columns: new[] { "Period", "Version", "MaterialCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_jf_not_kb_consign_report_BranchId_DocumentNumber", - table: "Set_jf_not_kb_consign_report", - columns: new[] { "BranchId", "DocumentNumber" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_jf_not_kb_consign_report_detail_DocumentId_Version_CustomCode_MaterialCode_BillNum", - table: "Set_jf_not_kb_consign_report_detail", - columns: new[] { "DocumentId", "Version", "CustomCode", "MaterialCode", "BillNum" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_jfcarconsign_CustomerCode_MaterialCode_PABillNum_Version", - table: "Set_jfcarconsign", - columns: new[] { "CustomerCode", "MaterialCode", "PABillNum", "Version" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_jfcarkb_CustomerCode_MaterialCode_BillNum_Version", - table: "Set_jfcarkb", - columns: new[] { "CustomerCode", "MaterialCode", "BillNum", "Version" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_KanBanSettle_Version_Kanban_MaterialCode", - table: "Set_KanBanSettle", - columns: new[] { "Version", "Kanban", "MaterialCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_KanBanSettle_Version_Version", - table: "Set_KanBanSettle_Version", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_material_MaterialCode", - table: "Set_material", - column: "MaterialCode", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_relationship_ErpMaterialCode", - table: "Set_relationship", - column: "ErpMaterialCode", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_ScrapClaims_Version_Version", - table: "Set_ScrapClaims_Version", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_sec_act_adjustment_report_BranchId_DocumentNumber", - table: "Set_sec_act_adjustment_report", - columns: new[] { "BranchId", "DocumentNumber" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_sec_act_adjustment_report_detail_BranchId_DocumentId_Version_CustomItemCode_CustomSubItemCode_SupplierCode", - table: "Set_sec_act_adjustment_report_detail", - columns: new[] { "BranchId", "DocumentId", "Version", "CustomItemCode", "CustomSubItemCode", "SupplierCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_sec_act_adjustment_report_detail_DocumentId", - table: "Set_sec_act_adjustment_report_detail", - column: "DocumentId"); - - migrationBuilder.CreateIndex( - name: "IX_Set_sec_act_diff_report_BranchId_DocumentNumber", - table: "Set_sec_act_diff_report", - columns: new[] { "BranchId", "DocumentNumber" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_sec_act_diff_report_detail_BranchId_DocumentId_Version_CustomItemCode_CustomSubItemCode_SupplierCode", - table: "Set_sec_act_diff_report_detail", - columns: new[] { "BranchId", "DocumentId", "Version", "CustomItemCode", "CustomSubItemCode", "SupplierCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_sec_act_diff_report_detail_DocumentId", - table: "Set_sec_act_diff_report_detail", - column: "DocumentId"); - - migrationBuilder.CreateIndex( - name: "IX_Set_sec_adj_Version_CustomerComponentCode_CustomerMaterialCode_SupplierCode", - table: "Set_sec_adj", - columns: new[] { "Version", "CustomerComponentCode", "CustomerMaterialCode", "SupplierCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_sec_adj_version_Version", - table: "Set_sec_adj_version", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_sec_dis_SupplierCode", - table: "Set_sec_dis", - column: "SupplierCode", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_sec_dis_version_Version", - table: "Set_sec_dis_version", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_sec_ratio_Version_CustomItemCode_CustomSubItemCode_SupplierCode", - table: "Set_sec_ratio", - columns: new[] { "Version", "CustomItemCode", "CustomSubItemCode", "SupplierCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_sec_ratio_version_Version", - table: "Set_sec_ratio_version", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_send_unsettled_report_BranchId_DocumentNumber", - table: "Set_send_unsettled_report", - columns: new[] { "BranchId", "DocumentNumber" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_send_unsettled_report_detail_BranchId_DocumentId_Version_ChassisNumber_ItemCode", - table: "Set_send_unsettled_report_detail", - columns: new[] { "BranchId", "DocumentId", "Version", "ChassisNumber", "ItemCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_Settle_state", - table: "Set_Settle", - column: "state"); - - migrationBuilder.CreateIndex( - name: "IX_Set_Settle_Version_ChassisNumber_MaterialCode_KENNCode", - table: "Set_Settle", - columns: new[] { "Version", "ChassisNumber", "MaterialCode", "KENNCode" }); - - migrationBuilder.CreateIndex( - name: "IX_Set_Settle_Version_Version", - table: "Set_Settle_Version", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_settlement_part_Period_CustomerCode_Version_SettlementPartCode", - table: "Set_settlement_part", - columns: new[] { "Period", "CustomerCode", "Version", "SettlementPartCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_SettlementCrossReference_Version_SettlementMaterialCode_BomMaterialCode", - table: "Set_SettlementCrossReference", - columns: new[] { "Version", "SettlementMaterialCode", "BomMaterialCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_SparePart_Version_PurchaseOrderNo_MaterialCode", - table: "Set_SparePart", - columns: new[] { "Version", "PurchaseOrderNo", "MaterialCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_SparePart_Version_Version", - table: "Set_SparePart_Version", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_stock_fis_diff_report_BranchId_DocumentNumber", - table: "Set_stock_fis_diff_report", - columns: new[] { "BranchId", "DocumentNumber" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_stock_fis_diff_report_detail_BranchId_DocumentId_ItemCode", - table: "Set_stock_fis_diff_report_detail", - columns: new[] { "BranchId", "DocumentId", "ItemCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_stock_fis_diff_report_detail_DocumentId", - table: "Set_stock_fis_diff_report_detail", - column: "DocumentId"); - - migrationBuilder.CreateIndex( - name: "IX_Set_stock_settled_report_BranchId_DocumentNumber", - table: "Set_stock_settled_report", - columns: new[] { "BranchId", "DocumentNumber" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_stock_settled_report_detail_BranchId_DocumentId_ItemCode", - table: "Set_stock_settled_report_detail", - columns: new[] { "BranchId", "DocumentId", "ItemCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_stock_settled_report_detail_DocumentId", - table: "Set_stock_settled_report_detail", - column: "DocumentId"); - - migrationBuilder.CreateIndex( - name: "IX_Set_stock_unsettled_report_BranchId_DocumentNumber", - table: "Set_stock_unsettled_report", - columns: new[] { "BranchId", "DocumentNumber" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_stock_unsettled_report_detail_BranchId_DocumentId_ItemCode", - table: "Set_stock_unsettled_report_detail", - columns: new[] { "BranchId", "DocumentId", "ItemCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_stock_unsettled_report_detail_DocumentId", - table: "Set_stock_unsettled_report_detail", - column: "DocumentId"); - - migrationBuilder.CreateIndex( - name: "IX_Set_supplier_item_setup_ErpSupplierCode_ErpItemCode_CustomerSupplierCode_CustomerCode", - table: "Set_supplier_item_setup", - columns: new[] { "ErpSupplierCode", "ErpItemCode", "CustomerSupplierCode", "CustomerCode" }, - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_UnHQSettleAccountVersion_Version", - table: "Set_UnHQSettleAccountVersion", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_Unsettle_state", - table: "Set_Unsettle", - column: "state"); - - migrationBuilder.CreateIndex( - name: "IX_Set_Unsettle_Version_ChassisNumber_MaterialCode_KENNCode", - table: "Set_Unsettle", - columns: new[] { "Version", "ChassisNumber", "MaterialCode", "KENNCode" }, - unique: true); - - migrationBuilder.CreateIndex( - name: "IX_Set_Unsettle_Version_Version", - table: "Set_Unsettle_Version", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsCustomerKanbanOutPut_BillNum", - table: "Set_WmsCustomerKanbanOutPut", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsCustomerKanbanOutPutDetial_Version", - table: "Set_WmsCustomerKanbanOutPutDetial", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsHQCarOutPut_BillNum", - table: "Set_WmsHQCarOutPut", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsHQCarOutPutDetial_Version", - table: "Set_WmsHQCarOutPutDetial", - column: "Version"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsHQFKanbanOutPut_BillNum", - table: "Set_WmsHQFKanbanOutPut", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsHQFKanbanOutPutDetial_Version", - table: "Set_WmsHQFKanbanOutPutDetial", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsHQFSharePartOutPut_BillNum", - table: "Set_WmsHQFSharePartOutPut", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsHQFSharePartOutPutDetial_Version", - table: "Set_WmsHQFSharePartOutPutDetial", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsHQHKanbanOutPut_BillNum", - table: "Set_WmsHQHKanbanOutPut", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsHQHKanbanOutPutDetial_Version", - table: "Set_WmsHQHKanbanOutPutDetial", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsHQHSharePartOutPut_BillNum", - table: "Set_WmsHQHSharePartOutPut", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsHQHSharePartOutPutDetial_Version", - table: "Set_WmsHQHSharePartOutPutDetial", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsHQMKanbanOutPut_BillNum", - table: "Set_WmsHQMKanbanOutPut", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsHQMKanbanOutPutDetial_Version", - table: "Set_WmsHQMKanbanOutPutDetial", - column: "Version"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsHQMSharePartOutPut_BillNum", - table: "Set_WmsHQMSharePartOutPut", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsHQMSharePartOutPutDetial_Version", - table: "Set_WmsHQMSharePartOutPutDetial", - column: "Version"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsHQWithOutKanbanOutPut_BillNum", - table: "Set_WmsHQWithOutKanbanOutPut", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsHQWithOutKanbanOutPutDetial_BillNum", - table: "Set_WmsHQWithOutKanbanOutPutDetial", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsJitOutPut_BillNum", - table: "Set_WmsJitOutPut", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsJitOutPutDetial_Version", - table: "Set_WmsJitOutPutDetial", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsKanbanOutPut_BillNum", - table: "Set_WmsKanbanOutPut", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsKanbanOutPutDetial_BillNum", - table: "Set_WmsKanbanOutPutDetial", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WMSKanBanSettle_Version_Version", - table: "Set_WMSKanBanSettle_Version", - column: "Version", - unique: true, - filter: "IsDeleted=0"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsOneTimeSaleOutPut_BillNum", - table: "Set_WmsOneTimeSaleOutPut", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsOneTimeSaleOutPutDetial_BillNum", - table: "Set_WmsOneTimeSaleOutPutDetial", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsSharePart90OutPut_BillNum", - table: "Set_WmsSharePart90OutPut", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsSharePart90OutPutDetial_BillNum", - table: "Set_WmsSharePart90OutPutDetial", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsSharePartOutPut_BillNum", - table: "Set_WmsSharePartOutPut", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsSharePartOutPutDetial_BillNum", - table: "Set_WmsSharePartOutPutDetial", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsWithOutKanbanOutPut_BillNum", - table: "Set_WmsWithOutKanbanOutPut", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_Set_WmsWithOutKanbanOutPutDetial_BillNum", - table: "Set_WmsWithOutKanbanOutPutDetial", - column: "BillNum"); - - migrationBuilder.CreateIndex( - name: "IX_UpstreamDocument_BTNotConsignReportId", - table: "UpstreamDocument", - column: "BTNotConsignReportId"); - - migrationBuilder.CreateIndex( - name: "IX_UpstreamDocument_BTSeqKBDiffReportId", - table: "UpstreamDocument", - column: "BTSeqKBDiffReportId"); - - migrationBuilder.CreateIndex( - name: "IX_UpstreamDocument_EstimatedStockDiffReportId", - table: "UpstreamDocument", - column: "EstimatedStockDiffReportId"); - - migrationBuilder.CreateIndex( - name: "IX_UpstreamDocument_JFNotConsignReportId", - table: "UpstreamDocument", - column: "JFNotConsignReportId"); - - migrationBuilder.CreateIndex( - name: "IX_UpstreamDocument_SecondaryActuralAdjustmentReportId", - table: "UpstreamDocument", - column: "SecondaryActuralAdjustmentReportId"); - - migrationBuilder.CreateIndex( - name: "IX_UpstreamDocument_SecondaryActuralDiffReportId", - table: "UpstreamDocument", - column: "SecondaryActuralDiffReportId"); - - migrationBuilder.CreateIndex( - name: "IX_UpstreamDocument_SendUnsettledDiffReportId", - table: "UpstreamDocument", - column: "SendUnsettledDiffReportId"); - - migrationBuilder.CreateIndex( - name: "IX_UpstreamDocument_StockFisDiffReportId", - table: "UpstreamDocument", - column: "StockFisDiffReportId"); - - migrationBuilder.CreateIndex( - name: "IX_UpstreamDocument_StockSettledDiffReportId", - table: "UpstreamDocument", - column: "StockSettledDiffReportId"); - - migrationBuilder.CreateIndex( - name: "IX_UpstreamDocument_StockUnsettledDiffReportId", - table: "UpstreamDocument", - column: "StockUnsettledDiffReportId"); - } - - protected override void Down(MigrationBuilder migrationBuilder) - { - migrationBuilder.DropTable( - name: "Set_bom"); - - migrationBuilder.DropTable( - name: "Set_bom_version"); - - migrationBuilder.DropTable( - name: "Set_BT_Car_Platform"); - - migrationBuilder.DropTable( - name: "Set_BT_Car_PlatformVersion"); - - migrationBuilder.DropTable( - name: "Set_bt_not_kb_consign_report_detail"); - - migrationBuilder.DropTable( - name: "Set_bt_seq_kb_diff_report_detail"); - - migrationBuilder.DropTable( - name: "Set_btcarconsign"); - - migrationBuilder.DropTable( - name: "Set_btcarconsign_version"); - - migrationBuilder.DropTable( - name: "Set_btcarkb"); - - migrationBuilder.DropTable( - name: "Set_btcarkb_version"); - - migrationBuilder.DropTable( - name: "Set_btcarseq"); - - migrationBuilder.DropTable( - name: "Set_btcarseq_version"); - - migrationBuilder.DropTable( - name: "Set_btcarseqfirst"); - - migrationBuilder.DropTable( - name: "Set_btcarseqfirst_version"); - - migrationBuilder.DropTable( - name: "Set_btcarseqsecond"); - - migrationBuilder.DropTable( - name: "Set_btcarseqsecond_version"); - - migrationBuilder.DropTable( - name: "Set_carmaterialconfig"); - - migrationBuilder.DropTable( - name: "Set_code"); - - migrationBuilder.DropTable( - name: "Set_control"); - - migrationBuilder.DropTable( - name: "Set_customer"); - - migrationBuilder.DropTable( - name: "Set_customer_bom"); - - migrationBuilder.DropTable( - name: "Set_customerlocation"); - - migrationBuilder.DropTable( - name: "Set_estdetail"); - - migrationBuilder.DropTable( - name: "Set_estimate_stock_report_detail"); - - migrationBuilder.DropTable( - name: "Set_estinventory_version"); - - migrationBuilder.DropTable( - name: "Set_estsum"); - - migrationBuilder.DropTable( - name: "Set_estsum_verion"); - - migrationBuilder.DropTable( - name: "Set_factory"); - - migrationBuilder.DropTable( - name: "Set_fis"); - - migrationBuilder.DropTable( - name: "Set_fis_extend"); - - migrationBuilder.DropTable( - name: "Set_fis_th"); - - migrationBuilder.DropTable( - name: "Set_fis_version"); - - migrationBuilder.DropTable( - name: "Set_HQ_F_Kanban"); - - migrationBuilder.DropTable( - name: "Set_HQ_F_Platform"); - - migrationBuilder.DropTable( - name: "Set_HQ_F_PlatformVersion"); - - migrationBuilder.DropTable( - name: "Set_HQ_H_Kanban"); - - migrationBuilder.DropTable( - name: "Set_HQ_H_Platform"); - - migrationBuilder.DropTable( - name: "Set_HQ_H_PlatformVersion"); - - migrationBuilder.DropTable( - name: "Set_HQ_M_Kanban"); - - migrationBuilder.DropTable( - name: "Set_HQ_M_Platform"); - - migrationBuilder.DropTable( - name: "Set_HQ_M_PlatformVersion"); - - migrationBuilder.DropTable( - name: "Set_hqcon"); - - migrationBuilder.DropTable( - name: "Set_hqcon_version"); - - migrationBuilder.DropTable( - name: "Set_hqkb"); - - migrationBuilder.DropTable( - name: "Set_hqkb_version"); - - migrationBuilder.DropTable( - name: "Set_hqspcon"); - - migrationBuilder.DropTable( - name: "Set_hqspcon_version"); - - migrationBuilder.DropTable( - name: "Set_hqspkb"); - - migrationBuilder.DropTable( - name: "Set_hqspkb_version"); - - migrationBuilder.DropTable( - name: "Set_importmap"); - - migrationBuilder.DropTable( - name: "Set_inventory"); - - migrationBuilder.DropTable( - name: "Set_inventory_version"); - - migrationBuilder.DropTable( - name: "Set_Invoice"); - - migrationBuilder.DropTable( - name: "Set_InvoiceSettledDiff"); - - migrationBuilder.DropTable( - name: "Set_InvoiceSettledDiffVersion"); - - migrationBuilder.DropTable( - name: "Set_InvoiceVersion"); - - migrationBuilder.DropTable( - name: "Set_item_invoice_price"); - - migrationBuilder.DropTable( - name: "Set_item_invoice_price_version"); - - migrationBuilder.DropTable( - name: "Set_jf_not_kb_consign_report_detail"); - - migrationBuilder.DropTable( - name: "Set_jfcarconsign"); - - migrationBuilder.DropTable( - name: "Set_jfcarconsign_version"); - - migrationBuilder.DropTable( - name: "Set_jfcarkb"); - - migrationBuilder.DropTable( - name: "Set_jfcarkb_version"); - - migrationBuilder.DropTable( - name: "Set_KanBanSettle"); - - migrationBuilder.DropTable( - name: "Set_KanBanSettle_Version"); - - migrationBuilder.DropTable( - name: "Set_material"); - - migrationBuilder.DropTable( - name: "Set_MaterialRelationshipDetail"); - - migrationBuilder.DropTable( - name: "Set_MaterialRelationshipVersion"); - - migrationBuilder.DropTable( - name: "Set_prebatch"); - - migrationBuilder.DropTable( - name: "Set_PriceList"); - - migrationBuilder.DropTable( - name: "Set_PriceListBJ"); - - migrationBuilder.DropTable( - name: "Set_PriceListVersion"); - - migrationBuilder.DropTable( - name: "Set_PriceListVersionBJ"); - - migrationBuilder.DropTable( - name: "Set_relationship"); - - migrationBuilder.DropTable( - name: "Set_ScrapClaims"); - - migrationBuilder.DropTable( - name: "Set_ScrapClaims_Version"); - - migrationBuilder.DropTable( - name: "Set_sec_act_adjustment_report_detail"); - - migrationBuilder.DropTable( - name: "Set_sec_act_diff_report_detail"); - - migrationBuilder.DropTable( - name: "Set_sec_adj"); - - migrationBuilder.DropTable( - name: "Set_sec_adj_version"); - - migrationBuilder.DropTable( - name: "Set_sec_dis"); - - migrationBuilder.DropTable( - name: "Set_sec_dis_version"); - - migrationBuilder.DropTable( - name: "Set_sec_ratio"); - - migrationBuilder.DropTable( - name: "Set_sec_ratio_version"); - - migrationBuilder.DropTable( - name: "Set_SecMatchBase"); - - migrationBuilder.DropTable( - name: "Set_send_unsettled_report_detail"); - - migrationBuilder.DropTable( - name: "Set_Settle"); - - migrationBuilder.DropTable( - name: "Set_Settle_Version"); - - migrationBuilder.DropTable( - name: "Set_settlement_part"); - - migrationBuilder.DropTable( - name: "Set_settlement_part_version"); - - migrationBuilder.DropTable( - name: "Set_SettlementCrossReference"); - - migrationBuilder.DropTable( - name: "Set_SettlementCrossReference_Version"); - - migrationBuilder.DropTable( - name: "Set_SettlementPakAndSpareParts"); - - migrationBuilder.DropTable( - name: "Set_SettlementPakAndSpareParts_Version"); - - migrationBuilder.DropTable( - name: "Set_SparePart"); - - migrationBuilder.DropTable( - name: "Set_SparePart_Version"); - - migrationBuilder.DropTable( - name: "Set_stock_fis_diff_report_detail"); - - migrationBuilder.DropTable( - name: "Set_stock_settled_report_detail"); - - migrationBuilder.DropTable( - name: "Set_stock_unsettled_report_detail"); - - migrationBuilder.DropTable( - name: "Set_supplier_item_setup"); - - migrationBuilder.DropTable( - name: "Set_TaskJob"); - - migrationBuilder.DropTable( - name: "Set_UnHQSettleAccount"); - - migrationBuilder.DropTable( - name: "Set_UnHQSettleAccountVersion"); - - migrationBuilder.DropTable( - name: "Set_Unsettle"); - - migrationBuilder.DropTable( - name: "Set_Unsettle_Version"); - - migrationBuilder.DropTable( - name: "Set_WmsCustomerKanbanOutPut"); - - migrationBuilder.DropTable( - name: "Set_WmsCustomerKanbanOutPutDetial"); - - migrationBuilder.DropTable( - name: "Set_WmsDetailDiffReport"); - - migrationBuilder.DropTable( - name: "Set_WmsDetailReport"); - - migrationBuilder.DropTable( - name: "Set_WmsDetailWithCodeReport"); - - migrationBuilder.DropTable( - name: "Set_WmsHQCarOutPut"); - - migrationBuilder.DropTable( - name: "Set_WmsHQCarOutPutDetial"); - - migrationBuilder.DropTable( - name: "Set_WmsHQFKanbanOutPut"); - - migrationBuilder.DropTable( - name: "Set_WmsHQFKanbanOutPutDetial"); - - migrationBuilder.DropTable( - name: "Set_WmsHQFSharePartOutPut"); - - migrationBuilder.DropTable( - name: "Set_WmsHQFSharePartOutPutDetial"); - - migrationBuilder.DropTable( - name: "Set_WmsHQHKanbanOutPut"); - - migrationBuilder.DropTable( - name: "Set_WmsHQHKanbanOutPutDetial"); - - migrationBuilder.DropTable( - name: "Set_WmsHQHSharePartOutPut"); - - migrationBuilder.DropTable( - name: "Set_WmsHQHSharePartOutPutDetial"); - - migrationBuilder.DropTable( - name: "Set_WmsHQMKanbanOutPut"); - - migrationBuilder.DropTable( - name: "Set_WmsHQMKanbanOutPutDetial"); - - migrationBuilder.DropTable( - name: "Set_WmsHQMSharePartOutPut"); - - migrationBuilder.DropTable( - name: "Set_WmsHQMSharePartOutPutDetial"); - - migrationBuilder.DropTable( - name: "Set_WmsHQWithOutKanbanOutPut"); - - migrationBuilder.DropTable( - name: "Set_WmsHQWithOutKanbanOutPutDetial"); - - migrationBuilder.DropTable( - name: "Set_WmsJitOutPut"); - - migrationBuilder.DropTable( - name: "Set_WmsJitOutPutDetial"); - - migrationBuilder.DropTable( - name: "Set_WmsKanbanOutPut"); - - migrationBuilder.DropTable( - name: "Set_WmsKanbanOutPutDetial"); - - migrationBuilder.DropTable( - name: "Set_WMSKanBanSettle"); - - migrationBuilder.DropTable( - name: "Set_WMSKanBanSettle_Version"); - - migrationBuilder.DropTable( - name: "Set_WmsOneTimeSaleOutPut"); - - migrationBuilder.DropTable( - name: "Set_WmsOneTimeSaleOutPutDetial"); - - migrationBuilder.DropTable( - name: "Set_WmsSharePart90OutPut"); - - migrationBuilder.DropTable( - name: "Set_WmsSharePart90OutPutDetial"); - - migrationBuilder.DropTable( - name: "Set_WmsSharePartOutPut"); - - migrationBuilder.DropTable( - name: "Set_WmsSharePartOutPutDetial"); - - migrationBuilder.DropTable( - name: "Set_WMSSparePart"); - - migrationBuilder.DropTable( - name: "Set_WmsWithOutKanbanOutPut"); - - migrationBuilder.DropTable( - name: "Set_WmsWithOutKanbanOutPutDetial"); - - migrationBuilder.DropTable( - name: "UpstreamDocument"); - - migrationBuilder.DropTable( - name: "Set_bt_not_kb_consign_report"); - - migrationBuilder.DropTable( - name: "Set_bt_seq_kb_diff_report"); - - migrationBuilder.DropTable( - name: "Set_estimate_stock_report"); - - migrationBuilder.DropTable( - name: "Set_jf_not_kb_consign_report"); - - migrationBuilder.DropTable( - name: "Set_sec_act_adjustment_report"); - - migrationBuilder.DropTable( - name: "Set_sec_act_diff_report"); - - migrationBuilder.DropTable( - name: "Set_send_unsettled_report"); - - migrationBuilder.DropTable( - name: "Set_stock_fis_diff_report"); - - migrationBuilder.DropTable( - name: "Set_stock_settled_report"); - - migrationBuilder.DropTable( - name: "Set_stock_unsettled_report"); - } - } -} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/SettleAccountDbContextModelSnapshot.cs b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/SettleAccountDbContextModelSnapshot.cs deleted file mode 100644 index bcd68c85..00000000 --- a/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/SettleAccountDbContextModelSnapshot.cs +++ /dev/null @@ -1,15137 +0,0 @@ -// -using System; -using Microsoft.EntityFrameworkCore; -using Microsoft.EntityFrameworkCore.Infrastructure; -using Microsoft.EntityFrameworkCore.Metadata; -using Microsoft.EntityFrameworkCore.Storage.ValueConversion; -using Volo.Abp.EntityFrameworkCore; -using Win.Sfs.SettleAccount; - -namespace Win.Sfs.SettleAccount.Migrations -{ - [DbContext(typeof(SettleAccountDbContext))] - partial class SettleAccountDbContextModelSnapshot : ModelSnapshot - { - protected override void BuildModel(ModelBuilder modelBuilder) - { -#pragma warning disable 612, 618 - modelBuilder - .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("Relational:MaxIdentifierLength", 128) - .HasAnnotation("ProductVersion", "5.0.8") - .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTCarConsigns.BTCarConsign", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasColumnType("nvarchar(450)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KBCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Qty") - .HasPrecision(18, 2) - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasMaxLength(36) - .HasColumnType("int"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "MaterialCode", "KBCode", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_btcarconsign"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTCarKBs.BTCarKB", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("ConsignQty") - .HasColumnType("decimal(18,2)"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DateTime") - .HasColumnType("datetime2"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DeliveryDateTime") - .HasColumnType("datetime2"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("NeedQty") - .HasPrecision(18, 2) - .HasColumnType("decimal(18,2)"); - - b.Property("OrderKBCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ReceiveAreaCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ReceiveAreaName") - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasMaxLength(36) - .HasColumnType("int"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "MaterialCode", "OrderKBCode", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_btcarkb"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTCarSeqFirsts.BTCarSeqFirst", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BarCode") - .HasColumnType("nvarchar(450)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasColumnType("nvarchar(450)"); - - b.Property("DT") - .HasColumnType("datetime2"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("OnLineDateTime") - .HasColumnType("datetime2"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("VIN") - .HasColumnType("nvarchar(450)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "BarCode", "VIN", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_btcarseqfirst"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTCarSeqSeconds.BTCarSeqSecond", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BarCode") - .HasColumnType("nvarchar(450)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CMSerie") - .HasColumnType("nvarchar(max)"); - - b.Property("CMSerieRemark") - .HasColumnType("nvarchar(max)"); - - b.Property("CarModelShort") - .HasColumnType("nvarchar(max)"); - - b.Property("CarName") - .HasColumnType("nvarchar(max)"); - - b.Property("CarType") - .HasColumnType("nvarchar(max)"); - - b.Property("Code") - .HasColumnType("nvarchar(max)"); - - b.Property("Color") - .HasColumnType("nvarchar(max)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasColumnType("nvarchar(450)"); - - b.Property("DateTime") - .HasColumnType("datetime2"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EngineCode") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InColor") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("OnLineDateTime") - .HasColumnType("datetime2"); - - b.Property("OrderStateNum") - .HasColumnType("nvarchar(max)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("PlanDate") - .HasColumnType("datetime2"); - - b.Property("PlanSeq") - .HasColumnType("int"); - - b.Property("PlanTypeRemark") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SpecialCarTypeRemark") - .HasColumnType("nvarchar(max)"); - - b.Property("StateName") - .HasColumnType("nvarchar(max)"); - - b.Property("TopSeq") - .HasColumnType("nvarchar(max)"); - - b.Property("VIN") - .HasColumnType("nvarchar(450)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "BarCode", "VIN", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_btcarseqsecond"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTCarSeqs.BTCarSeq", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BarCode") - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DT") - .HasColumnType("datetime2"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("OnLineDateTime") - .HasColumnType("datetime2"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasMaxLength(1024) - .HasColumnType("nvarchar(1024)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("VIN") - .IsRequired() - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "BarCode", "VIN", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_btcarseq"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTNotConsignReports.BTNotConsignReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BeginTime") - .HasColumnType("datetime2"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndTime") - .HasColumnType("datetime2"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_bt_not_kb_consign_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTNotConsignReports.BTNotConsignReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConsignQty") - .HasColumnType("decimal(18,2)"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(450)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DeliveryDateTime") - .HasColumnType("datetime2"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasColumnType("nvarchar(450)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("NeedQty") - .HasColumnType("decimal(18,2)"); - - b.Property("OrderKBCode") - .HasColumnType("nvarchar(450)"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId"); - - b.HasIndex("BranchId", "DocumentId", "Version", "CustomCode", "MaterialCode", "OrderKBCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_bt_not_kb_consign_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTSeqKBDiffReports.BTSeqKBDiffReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_bt_seq_kb_diff_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTSeqKBDiffReports.BTSeqKBDiffReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(450)"); - - b.Property("DT") - .HasColumnType("datetime2"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KBQty") - .HasColumnType("decimal(18,2)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SeqQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId"); - - b.HasIndex("BranchId", "DocumentId", "Version", "DT", "CustomCode", "MaterialCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_bt_seq_kb_diff_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Boms.Bom", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BomLevel") - .HasColumnType("int"); - - b.Property("BomType") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ChildItemCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ChildItemDesc") - .HasMaxLength(2048) - .HasColumnType("nvarchar(2048)"); - - b.Property("ChildItemUom") - .HasColumnType("nvarchar(max)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("EffectiveTime") - .HasColumnType("datetime2"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExpireTime") - .HasColumnType("datetime2"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("IssuePosition") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("OperateProcess") - .HasColumnType("int"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("ParentItemCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentItemDesc") - .HasMaxLength(2048) - .HasColumnType("nvarchar(2048)"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("ScrapPercent") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("ParentItemCode", "ChildItemCode", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_bom"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Customers.Customer", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Address") - .HasMaxLength(2048) - .HasColumnType("nvarchar(2048)"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("Code") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("Contact") - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("ContactEmail") - .HasColumnType("nvarchar(max)"); - - b.Property("ContactFax") - .HasColumnType("nvarchar(max)"); - - b.Property("ContactPhone") - .HasColumnType("nvarchar(max)"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CurrencyId") - .HasColumnType("uniqueidentifier"); - - b.Property("CustomerType") - .HasColumnType("int"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Description") - .HasMaxLength(2048) - .HasColumnType("nvarchar(2048)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Name") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("TaxRate") - .HasColumnType("decimal(18,2)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "Code") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_customer"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Customers.CustomerBom", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ChildItemCode") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("EffectiveTime") - .HasColumnType("datetime2"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("FailureTime") - .HasColumnType("datetime2"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("ParentItemCode") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "CustomerCode", "ParentItemCode", "ChildItemCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_customer_bom"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.BTCarConsigns.BTCarConsignVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_btcarconsign_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.BTCarKBs.BTCarKBVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DateTime") - .HasColumnType("datetime2"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_btcarkb_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.BTCarSeqFirsts.BTCarSeqFirstVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DT") - .HasColumnType("datetime2"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_btcarseqfirst_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.BTCarSeqSeconds.BTCarSeqSecondVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DateTime") - .HasColumnType("datetime2"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_btcarseqsecond_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.BTCarSeqs.BTCarSeqVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DT") - .HasColumnType("datetime2"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_btcarseq_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.BT_Car.BT_Car_Platform", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AcceptanceDate") - .HasColumnType("datetime2"); - - b.Property("AcceptanceNo") - .HasColumnType("nvarchar(max)"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BTCarKanBan") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExternalKanbanNumber") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KanbanNumber") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialVoucherNo") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StorageLocation") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("StorageLocationDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Supplier") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_BT_Car_Platform"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.BT_Car.BT_Car_PlatformVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_BT_Car_PlatformVersion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Boms.BomVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_bom_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.CarMaterialConfigs.CarMaterialConfig", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CarCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("CarCode", "MaterialCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_carmaterialconfig"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.CodeSettings.CodeSetting", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Description") - .HasColumnType("nvarchar(max)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Project") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Value") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Project", "Value") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_code"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Controls.CentralizedControl", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Year", "Period") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_control"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.EstimatedInventories.EstimatedInventoryVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_estinventory_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.EstimatedSums.EstimatedSum", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Postingperiod") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("PurchaseDocument") - .HasColumnType("nvarchar(max)"); - - b.Property("PurchaseLine") - .HasColumnType("nvarchar(max)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SupplierCode") - .HasColumnType("nvarchar(max)"); - - b.Property("SupplierDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_estsum"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.EstimatedSums.EstimatedSumVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_estsum_verion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.FISes.FIS_TH", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BeginTime") - .HasColumnType("datetime2"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CP5Time") - .HasColumnType("datetime2"); - - b.Property("CP7Time") - .HasColumnType("datetime2"); - - b.Property("ChassisNumber") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ChassisNumber2") - .HasColumnType("nvarchar(450)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndTime") - .HasColumnType("datetime2"); - - b.Property("ErpMaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend1") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KENNCode") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Model") - .HasColumnType("nvarchar(450)"); - - b.Property("OrderBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SequenceNumber") - .HasColumnType("nvarchar(max)"); - - b.Property("SettledQty") - .HasColumnType("decimal(18,2)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("ChassisNumber2", "Version", "Model", "MaterialCode") - .IsUnique() - .HasFilter("[ChassisNumber2] IS NOT NULL AND [Model] IS NOT NULL"); - - b.ToTable("Set_fis_th"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Factories.Factory", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("Code") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Desc") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("Code") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_factory"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQCarConsigns.HQConsign", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("MaterialDesc") - .HasMaxLength(200) - .HasColumnType("nvarchar(200)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("VIN") - .IsRequired() - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "MaterialCode", "VIN", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_hqcon"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQCarConsigns.HQConsignVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_hqcon_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQCarConsigns.HQSpecConsign", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KBCode") - .IsRequired() - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("KBCodeExtend") - .IsRequired() - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("MaterialDesc") - .HasMaxLength(200) - .HasColumnType("nvarchar(200)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "MaterialCode", "KBCode", "KBCodeExtend", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_hqspcon"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQCarConsigns.HQSpecConsignVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_hqspcon_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQCarKBs.HQKB", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("ConsignQty") - .HasColumnType("decimal(18,2)"); - - b.Property("CreateTime") - .HasColumnType("datetime2"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KBCode") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("MaterialDesc") - .HasMaxLength(200) - .HasColumnType("nvarchar(200)"); - - b.Property("NeedQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("VIN") - .IsRequired() - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "MaterialCode", "VIN", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_hqkb"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQCarKBs.HQKBVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_hqkb_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQCarKBs.HQSpecKB", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("ConsignQty") - .HasColumnType("decimal(18,2)"); - - b.Property("CreateTime") - .HasColumnType("datetime2"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KBCode") - .IsRequired() - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("MaterialDesc") - .HasMaxLength(200) - .HasColumnType("nvarchar(200)"); - - b.Property("NeedQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "MaterialCode", "KBCode", "Version") - .IsUnique() - .HasFilter("[MaterialCode] IS NOT NULL"); - - b.ToTable("Set_hqspkb"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQCarKBs.HQSpecKBVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_hqspkb_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQ_F.HQ_F_Kanban", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsAuto") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialDesc") - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("PoLine") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Supplier") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Warehouse") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("WarehouseDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.HasKey("Id"); - - b.HasIndex("Kanban", "PoLine", "MaterialCode"); - - b.ToTable("Set_HQ_F_Kanban"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQ_F.HQ_F_Platform", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AcceptanceDate") - .HasColumnType("datetime2"); - - b.Property("AcceptanceNo") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExternalKanbanNumber") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("HQHKanBan") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KanbanNumber") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialVoucherNo") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StorageLocation") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("StorageLocationDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Supplier") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_HQ_F_Platform"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQ_F.HQ_F_PlatformVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_HQ_F_PlatformVersion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQ_F.HQ_H_Kanban", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillDate") - .HasColumnType("datetime2"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsAuto") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialDesc") - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("PoLine") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Supplier") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Warehouse") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("WarehouseDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("WmsBillNum") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("Kanban", "PoLine", "MaterialCode"); - - b.ToTable("Set_HQ_H_Kanban"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQ_F.HQ_M_Kanban", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsAuto") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialDesc") - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("PoLine") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Supplier") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Warehouse") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("WarehouseDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.HasKey("Id"); - - b.HasIndex("Kanban", "PoLine", "MaterialCode"); - - b.ToTable("Set_HQ_M_Kanban"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQ_H.HQ_H_Platform", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AcceptanceDate") - .HasColumnType("datetime2"); - - b.Property("AcceptanceNo") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExternalKanbanNumber") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("HQHKanBan") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KanbanNumber") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialVoucherNo") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StorageLocation") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("StorageLocationDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Supplier") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_HQ_H_Platform"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQ_H.HQ_H_PlatformVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_HQ_H_PlatformVersion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQ_M.HQ_M_Platform", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AcceptanceDate") - .HasColumnType("datetime2"); - - b.Property("AcceptanceNo") - .HasColumnType("nvarchar(max)"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExternalKanbanNumber") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("HQMKanBan") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KanbanNumber") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialVoucherNo") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StorageLocation") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("StorageLocationDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Supplier") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_HQ_M_Platform"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.HQ_M.HQ_M_PlatformVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_HQ_M_PlatformVersion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.ImportMap.ImportColumnMap", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsCheck") - .HasColumnType("bit"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("NewColumnName") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OldColumnName") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ProjectName") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Set_importmap"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Inventories.InventoryDetailVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(450)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version", "Factory") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_inventory_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Invoices.Invoice", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialDesc") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasMaxLength(1000) - .HasColumnType("nvarchar(1000)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_Invoice"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Invoices.InvoiceVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_InvoiceVersion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.ItemInvoicePrices.ItemInvoicePrice", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Backorder") - .HasColumnType("nvarchar(max)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CC") - .HasColumnType("nvarchar(max)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtendedMargin") - .HasColumnType("decimal(18,2)"); - - b.Property("ExtendedPrice") - .HasColumnType("decimal(18,2)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Sales") - .HasColumnType("nvarchar(max)"); - - b.Property("SubAcct") - .HasColumnType("nvarchar(max)"); - - b.Property("UM") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Period", "Version", "MaterialCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_item_invoice_price"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.ItemInvoicePrices.ItemInvoicePriceVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_item_invoice_price_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.JFCarConsigns.JFCarConsignVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_jfcarconsign_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.JFCarKBs.JFCarKBVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_jfcarkb_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.MaterialRelationships.MaterialRelationshipDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AppraisalCategory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ErpMaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialDesc") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialProperty") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SettleMaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ShipMaterailCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_MaterialRelationshipDetail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.MaterialRelationships.MaterialRelationshipVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_MaterialRelationshipVersion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Materials.Material", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EstimateType") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("EstimateTypeDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Unit") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("MaterialCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_material"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Prices.PriceList", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BeginDate") - .HasColumnType("datetime2"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndDate") - .HasColumnType("datetime2"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Type") - .HasColumnType("int"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Set_PriceList"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Prices.PriceListBJ", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BeginDate") - .HasColumnType("datetime2"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndDate") - .HasColumnType("datetime2"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Type") - .HasColumnType("int"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Set_PriceListBJ"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Prices.PriceListVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_PriceListVersion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Prices.PriceListVersionBJ", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_PriceListVersionBJ"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SecMatch.SecMatchBase", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("Buyer") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffAmount") - .HasColumnType("decimal(18,2)"); - - b.Property("DiffPrice") - .HasColumnType("decimal(18,2)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Index") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("IsDiffNumber") - .HasColumnType("bit"); - - b.Property("IsSettle") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialDesc") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialPartCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Model") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("PartType") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("RealSettlementNumber") - .HasColumnType("decimal(18,2)"); - - b.Property("RealSettlementPrice") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SettleMentPartCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SettlementNumber") - .HasColumnType("decimal(18,2)"); - - b.Property("SettlementPrice") - .HasColumnType("decimal(18,2)"); - - b.Property("SupplierCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SupplierName") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SupplyProportion") - .HasMaxLength(50) - .HasColumnType("decimal(18,2)"); - - b.Property("TheoreticalSettlementNumber") - .HasColumnType("decimal(18,2)"); - - b.Property("UsedNumber") - .HasMaxLength(50) - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_SecMatchBase"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SecondaryMatching.SecondaryAdjustment", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("Buyer") - .HasColumnType("nvarchar(max)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerComponentCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("CustomerMaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("HasChanged") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SupplierCode") - .HasColumnType("nvarchar(450)"); - - b.Property("Total") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version", "CustomerComponentCode", "CustomerMaterialCode", "SupplierCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_adj"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SecondaryMatching.SecondaryAdjustmentVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_adj_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SecondaryMatching.SecondaryDiscount", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("Buyer") - .HasColumnType("nvarchar(max)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("HasChanged") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SupplierCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Total") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("SupplierCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_dis"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SecondaryMatching.SecondaryDiscountVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_dis_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SecondaryMatching.SecondaryPriceRatio", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomItemCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("CustomItemPrice") - .HasColumnType("decimal(18,2)"); - - b.Property("CustomSubItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("CustomSubItemPrice") - .HasColumnType("decimal(18,2)"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SupplierCode") - .HasColumnType("nvarchar(450)"); - - b.Property("SupplierDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("SupplyProportion") - .HasColumnType("nvarchar(max)"); - - b.Property("SupplyProportionPrice") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version", "CustomItemCode", "CustomSubItemCode", "SupplierCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_ratio"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SecondaryMatching.SecondaryPriceRatioVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .IsRequired() - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_ratio_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettleAccounts.SettleAccount", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CP5A") - .HasColumnType("datetime2"); - - b.Property("CP7") - .HasColumnType("datetime2"); - - b.Property("ChassisNumber") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KENNCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Model") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SettleYear") - .HasColumnType("nvarchar(max)"); - - b.Property("SettlementID") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("SettlementSupplier") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("state") - .HasColumnType("int"); - - b.HasKey("Id"); - - b.HasIndex("state"); - - b.HasIndex("Version", "ChassisNumber", "MaterialCode", "KENNCode"); - - b.ToTable("Set_Settle"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettleAccounts.SettleAccountVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_Settle_Version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettleAccounts.UnSettleAccount", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CP5A") - .HasColumnType("datetime2"); - - b.Property("CP7") - .HasColumnType("datetime2"); - - b.Property("ChassisNumber") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KENNCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Model") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SettleYear") - .HasColumnType("nvarchar(max)"); - - b.Property("SettlementID") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("SettlementSupplier") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("UnsettledReason") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("state") - .HasColumnType("int"); - - b.HasKey("Id"); - - b.HasIndex("state"); - - b.HasIndex("Version", "ChassisNumber", "MaterialCode", "KENNCode") - .IsUnique(); - - b.ToTable("Set_Unsettle"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettleAccounts.UnSettleAccountVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_Unsettle_Version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettlementCrossReference.SettlementCrossReferenceVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_SettlementCrossReference_Version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettlementCrossReferences.SettlementCrossReference", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BomMaterialCode") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("Buyer") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialDesc") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Model") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("PartType") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SettlementMaterialCode") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SupplierCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SupplierDesc") - .HasMaxLength(128) - .HasColumnType("nvarchar(128)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.HasIndex("Version", "SettlementMaterialCode", "BomMaterialCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_SettlementCrossReference"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettlementPakAndSparePartsRef.SettlementPakAndSpareParts", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("ApplicableFunction") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ErpSparePartCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ErpSparePartName") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Model") - .HasColumnType("nvarchar(max)"); - - b.Property("PartType") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("PerCarNum") - .HasMaxLength(50) - .HasColumnType("decimal(18,2)"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Price") - .HasMaxLength(50) - .HasColumnType("decimal(18,2)"); - - b.Property("ProductLine") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("QADCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("QuantityPrice") - .HasMaxLength(50) - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SettlementPartCode") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SettlementPartDesc") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SupplierCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SupplierName") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SupplyProportion") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_SettlementPakAndSpareParts"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettlementPakAndSparePartsRef.SettlementPakAndSparePartsVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_SettlementPakAndSpareParts_Version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettlementParts.SettlementPart", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Model") - .HasColumnType("nvarchar(max)"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SettlementPartCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("SettlementPartDesc") - .HasMaxLength(2048) - .HasColumnType("nvarchar(2048)"); - - b.Property("Uom") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Period", "CustomerCode", "Version", "SettlementPartCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_settlement_part"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.SettlementParts.SettlementPartVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_settlement_part_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.StorageLocations.CustomerStorageLocation", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("CustomerDesc") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Storagelocation") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Storagelocation", "CustomerCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_customerlocation"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.TaskJob", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("ActionName") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DownFileName") - .HasMaxLength(500) - .HasColumnType("nvarchar(500)"); - - b.Property("Email") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Error") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("FileName") - .HasMaxLength(500) - .HasColumnType("nvarchar(500)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Name") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("RealDownFileName") - .HasMaxLength(500) - .HasColumnType("nvarchar(500)"); - - b.Property("RealFileName") - .HasMaxLength(500) - .HasColumnType("nvarchar(500)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("ServiceName") - .HasMaxLength(300) - .HasColumnType("nvarchar(300)"); - - b.Property("State") - .HasColumnType("nvarchar(max)"); - - b.Property("TaskId") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Type") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Set_TaskJob"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.UnHQSettleAccounts.UnHQSettleAccount", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AcceptanceDate") - .HasColumnType("datetime2"); - - b.Property("AcceptanceNo") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExternalKanbanNumber") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("HQHKanBan") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KanbanNumber") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialVoucherNo") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StorageLocation") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("StorageLocationDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("Supplier") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_UnHQSettleAccount"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.UnHQSettleAccounts.UnHQSettleAccountVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_UnHQSettleAccountVersion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.VWKanBan.KanBanSettle", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Batch") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Flag") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("PartType") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Relation") - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SettleDate") - .HasColumnType("datetime2"); - - b.Property("SettleInputDate") - .HasColumnType("datetime2"); - - b.Property("State") - .HasColumnType("nvarchar(max)"); - - b.Property("SupplierCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("Version", "Kanban", "MaterialCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_KanBanSettle"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.VWKanBan.KanBanVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_KanBanSettle_Version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.VWScrapClaims.ScrapClaims", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialDesc") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasMaxLength(1000) - .HasColumnType("nvarchar(1000)"); - - b.Property("Type") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_ScrapClaims"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.VWScrapClaims.ScrapClaimsVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_ScrapClaims_Version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.VWSparePart.SparePart", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AccountNum") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("AmountNoTax") - .HasColumnType("decimal(18,2)"); - - b.Property("BatchNo") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DeliveryLineNum") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeliveryOrderNo") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasMaxLength(250) - .HasColumnType("nvarchar(250)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("FactoryName") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("GermanInvoiceNo") - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("InvoicedQty") - .HasColumnType("decimal(18,2)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("LineNumber") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialDesc") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("PurchaseOrderNo") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("PurchaseOrderNoItem") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("PurchaseOrderNoText") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("PurchasePriceNoTax") - .HasColumnType("decimal(18,2)"); - - b.Property("PurchaseType") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ReceiptQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SpareDate") - .HasColumnType("datetime2"); - - b.Property("TaxCode") - .HasColumnType("nvarchar(max)"); - - b.Property("TaxRate") - .HasColumnType("decimal(18,2)"); - - b.Property("Unit") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Version") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version", "PurchaseOrderNo", "MaterialCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_SparePart"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.VWSparePart.SparePartVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_SparePart_Version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsCustomerKanbanOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsCustomerKanbanOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsCustomerKanbanOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SapMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_WmsCustomerKanbanOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQCarOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsHQCarOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQCarOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("IsSparePart") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OrderBillNum") - .HasColumnType("nvarchar(max)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPutQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version"); - - b.ToTable("Set_WmsHQCarOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQFKanbanOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsHQFKanbanOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQFKanbanOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("PoLine") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_WmsHQFKanbanOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQFSharePartOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsHQFSharePartOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQFSharePartOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OrderBillNum") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPutQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_WmsHQFSharePartOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQHKanbanOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsHQHKanbanOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQHKanbanOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("PoLine") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_WmsHQHKanbanOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQHSharePartOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsHQHSharePartOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQHSharePartOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OrderBillNum") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPutQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_WmsHQHSharePartOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQMKanbanOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsHQMKanbanOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQMKanbanOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("PoLine") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version"); - - b.ToTable("Set_WmsHQMKanbanOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQMSharePartOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsHQMSharePartOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQMSharePartOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OrderBillNum") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPutQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version"); - - b.ToTable("Set_WmsHQMSharePartOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQWithOutKanbanOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsHQWithOutKanbanOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsHQWithOutKanbanOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsBack") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("OutputQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("RealityNumber") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SapMaterialCode") - .HasColumnType("nvarchar(max)"); - - b.Property("SockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Type") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsHQWithOutKanbanOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsJitOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsJitOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsJitOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ChassisNumber") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KennCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialGroup") - .HasMaxLength(200) - .HasColumnType("nvarchar(200)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentMaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .IsRequired() - .HasMaxLength(200) - .HasColumnType("nvarchar(200)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_WmsJitOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsKanbanOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsKanbanOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsKanbanOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsKanbanOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsOneTimeSaleOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsOneTimeSaleOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsOneTimeSaleOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsBack") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("OrderBillNum") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutputQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("RealityNumber") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SapMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("SockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Type") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsOneTimeSaleOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsSharePart90OutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsSharePart90OutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsSharePart90OutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OrderBillNum") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPutQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsSharePart90OutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsSharePartOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsSharePartOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsSharePartOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("OrderBillNum") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPut") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OutPutQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("TaskId") - .HasColumnType("uniqueidentifier"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WmsBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsSharePartOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsWithOutKanbanOutPut", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("Creator") - .HasColumnType("nvarchar(max)"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsWithOutKanbanOutPut"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS.WmsWithOutKanbanOutPutDetial", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsBack") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("OutputQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("RealityNumber") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SapMaterialCode") - .HasColumnType("nvarchar(max)"); - - b.Property("SockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Type") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("BillNum"); - - b.ToTable("Set_WmsWithOutKanbanOutPutDetial"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS_KanBan.WMSKanBanSettle", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DeliveryOrderNo") - .HasColumnType("nvarchar(max)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("Kanban") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("PartType") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Relation") - .HasMaxLength(100) - .HasColumnType("nvarchar(100)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("WMSActualGoodsDate") - .HasColumnType("datetime2"); - - b.Property("WMSDeliveryNote") - .HasColumnType("nvarchar(max)"); - - b.Property("WMSDeliveryQty") - .HasColumnType("decimal(18,2)"); - - b.HasKey("Id"); - - b.ToTable("Set_WMSKanBanSettle"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS_KanBan.WMSKanBanVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_WMSKanBanSettle_Version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WMS_SparePart.WMSSparePart", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MainFactory") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialDesc") - .HasMaxLength(500) - .HasColumnType("nvarchar(500)"); - - b.Property("MaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("PurchaseOrderNo") - .HasColumnType("nvarchar(max)"); - - b.Property("ReceiptQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SapCode") - .HasColumnType("nvarchar(max)"); - - b.Property("SpareDate") - .HasColumnType("datetime2"); - - b.Property("Version") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WMSDeliveryNote") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Set_WMSSparePart"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WmsDetailDiffReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("Client") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialGroup") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialGroupCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("OutputQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark1") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("SwitchCode") - .HasColumnType("nvarchar(max)"); - - b.Property("Type") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Set_WmsDetailDiffReport"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WmsDetailReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AccountDate") - .HasColumnType("datetime2"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("Client") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ClientCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffAmt") - .HasColumnType("decimal(18,2)"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("LineNumber") - .HasColumnType("int"); - - b.Property("MaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialGroup") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialGroupCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("OutPutAmt") - .HasColumnType("decimal(18,2)"); - - b.Property("OutputQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark1") - .HasColumnType("nvarchar(max)"); - - b.Property("SaleCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("SettleCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Type") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Set_WmsDetailReport"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.WmsDetailWithCodeReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("Amt") - .HasColumnType("decimal(18,2)"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("Client") - .IsRequired() - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EstimateType") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("LineNumber") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialDesc") - .HasMaxLength(150) - .HasColumnType("nvarchar(150)"); - - b.Property("MaterialGroup") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("OutputQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark1") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("SwitchCode") - .HasColumnType("nvarchar(max)"); - - b.Property("Type") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Set_WmsDetailWithCodeReport"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.EstimatedInventories.EstimatedInventoryDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNumber") - .HasColumnType("nvarchar(max)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("InvoiceQty") - .HasColumnType("decimal(18,2)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialDocument") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDocumentLine") - .HasColumnType("nvarchar(450)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("PostingDate") - .HasColumnType("datetime2"); - - b.Property("PurchaseDocument") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("PurchaseLine") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ReceiveQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Source") - .HasColumnType("nvarchar(max)"); - - b.Property("StorageLocation") - .IsRequired() - .HasColumnType("nvarchar(max)"); - - b.Property("SupplierCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("SupplierDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("MaterialDocument", "MaterialDocumentLine", "MaterialCode", "Version") - .IsUnique() - .HasFilter("[MaterialDocumentLine] IS NOT NULL"); - - b.ToTable("Set_estdetail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.EstimatedStockDiffReports.EstimatedStockDiffReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_estimate_stock_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.EstimatedStockDiffReports.EstimatedStockDiffReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EstimationQty") - .HasColumnType("decimal(18,2)"); - - b.Property("EstimationType") - .HasColumnType("nvarchar(max)"); - - b.Property("EstimationTypeDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("FgQty") - .HasColumnType("decimal(18,2)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("ItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("ItemDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("UnSettledQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId"); - - b.HasIndex("BranchId", "DocumentId", "ItemCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_estimate_stock_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.FISes.FIS", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AccountDate") - .HasColumnType("datetime2"); - - b.Property("BeginTime") - .HasColumnType("datetime2"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CP5Time") - .HasColumnType("datetime2"); - - b.Property("CP7Time") - .HasColumnType("datetime2"); - - b.Property("ChassisNumber") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ChassisNumber2") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndTime") - .HasColumnType("datetime2"); - - b.Property("ErpMaterialCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Extend1") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("FISYear") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("ItemCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("KENNCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Model") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OrderBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SequenceNumber") - .HasColumnType("nvarchar(max)"); - - b.Property("SettleState") - .HasColumnType("int"); - - b.Property("SettledQty") - .HasColumnType("decimal(18,2)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("UnSettleVersion") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("WMSBillNum") - .HasColumnType("nvarchar(max)"); - - b.Property("WMSState") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("ChassisNumber2", "KENNCode"); - - b.HasIndex("ChassisNumber2", "Version", "KENNCode", "ItemCode"); - - b.ToTable("Set_fis"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.FISes.FISExtend", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BeginTime") - .HasColumnType("datetime2"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CP5Time") - .HasColumnType("datetime2"); - - b.Property("CP7Time") - .HasColumnType("datetime2"); - - b.Property("ChassisNumber") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ChassisNumber2") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndTime") - .HasColumnType("datetime2"); - - b.Property("ErpMaterialCode") - .HasColumnType("nvarchar(max)"); - - b.Property("Extend1") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("FISYear") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("ItemCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("KENNCode") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Model") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("OrderBillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SequenceNumber") - .HasColumnType("nvarchar(max)"); - - b.Property("SettleState") - .HasColumnType("int"); - - b.Property("SettledQty") - .HasColumnType("decimal(18,2)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("ChassisNumber2", "Version", "Model", "ItemCode") - .IsUnique() - .HasFilter("[Model] IS NOT NULL"); - - b.ToTable("Set_fis_extend"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.FISes.FISVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BeginDate") - .HasColumnType("datetime2"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndDate") - .HasColumnType("datetime2"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Model") - .HasColumnType("nvarchar(max)"); - - b.Property("Period") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_fis_version"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Inventories.InventoryDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AppraisalCategory") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("AppraisalDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndingInventoryQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("InputQty") - .HasColumnType("decimal(18,2)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("OpeningInventoryQty") - .HasColumnType("decimal(18,2)"); - - b.Property("OutputQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Price") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StorageLocation") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("StorageLocationDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("Unit") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("Version", "MaterialCode", "StorageLocation") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_inventory"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.JFCarConsigns.JFCarConsign", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasColumnType("nvarchar(450)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("MaterialDesc") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("PABillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Qty") - .HasPrecision(18, 2) - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasMaxLength(36) - .HasColumnType("int"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "MaterialCode", "PABillNum", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_jfcarconsign"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.JFCarKBs.JFCarKB", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("ConsignQty") - .HasColumnType("decimal(18,2)"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .IsRequired() - .HasColumnType("nvarchar(450)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("InStockQty") - .HasPrecision(18, 2) - .HasColumnType("decimal(18,2)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("MaterialDesc") - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("OnLineDateTime") - .HasColumnType("datetime2"); - - b.Property("ParentId") - .HasColumnType("uniqueidentifier"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasMaxLength(36) - .HasColumnType("int"); - - b.Property("Version") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.HasIndex("CustomerCode", "MaterialCode", "BillNum", "Version") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_jfcarkb"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.JFNotConsignReports.JFNotConsignReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BeginTime") - .HasColumnType("datetime2"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndTime") - .HasColumnType("datetime2"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_jf_not_kb_consign_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.JFNotConsignReports.JFNotConsignReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BillNum") - .HasColumnType("nvarchar(450)"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConsignQty") - .HasColumnType("decimal(18,2)"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(450)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("InStockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasColumnType("nvarchar(450)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("OnLineDateTime") - .HasColumnType("datetime2"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId", "Version", "CustomCode", "MaterialCode", "BillNum") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_jf_not_kb_consign_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.MaterialRelationships.MaterialRelationship", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("AppraisalCategory") - .HasColumnType("nvarchar(max)"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ErpMaterialCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("MaterialProperty") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SettleMaterialCode") - .HasColumnType("nvarchar(max)"); - - b.Property("ShipMaterailCode") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("ErpMaterialCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_relationship"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Prebatches.Prebatch", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CarCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("KENNCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("State") - .HasColumnType("int"); - - b.Property("Year") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("YearKennCode") - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.HasKey("Id"); - - b.ToTable("Set_prebatch"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Reports.InvoiceSettledDiffs.InvoiceSettledDiff", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("CP7ScrapQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ClaimQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffPrice") - .HasColumnType("decimal(18,2)"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("Factory") - .HasColumnType("nvarchar(max)"); - - b.Property("InvoiceAmt") - .HasColumnType("decimal(18,2)"); - - b.Property("InvoicePrice") - .HasColumnType("decimal(18,2)"); - - b.Property("InvoiceQty") - .HasColumnType("decimal(18,2)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("MaterialCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("MaterialDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SalePrice") - .HasColumnType("decimal(18,2)"); - - b.Property("SapMaterialCode") - .HasColumnType("nvarchar(max)"); - - b.Property("SapMaterialGroup") - .HasColumnType("nvarchar(max)"); - - b.Property("SettleQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Set_InvoiceSettledDiff"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.Reports.InvoiceSettledDiffs.InvoiceSettledDiffVersion", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("CustomCode") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("CustomName") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("ProjectName") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.Property("Year") - .HasMaxLength(50) - .HasColumnType("nvarchar(50)"); - - b.HasKey("Id"); - - b.ToTable("Set_InvoiceSettledDiffVersion"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SecondaryActuralAdjustmentReports.SecondaryActuralAdjustmentReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_act_adjustment_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SecondaryActuralAdjustmentReports.SecondaryActuralAdjustmentReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("Buyer") - .HasColumnType("nvarchar(max)"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("CustomItemDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomSubItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("CustomSubItemDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomSubItemPrice") - .HasColumnType("decimal(18,2)"); - - b.Property("CustomSubItemSumQty") - .HasColumnType("decimal(18,2)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ErpSubItemActualQty") - .HasColumnType("decimal(18,2)"); - - b.Property("ErpSubItemCode") - .HasColumnType("nvarchar(max)"); - - b.Property("ErpSubItemQty") - .HasColumnType("decimal(18,2)"); - - b.Property("HasChanged") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("OfflineQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SumPriceNoTax") - .HasColumnType("decimal(18,2)"); - - b.Property("SumPriceWithTax") - .HasColumnType("decimal(18,2)"); - - b.Property("SupplierCode") - .HasColumnType("nvarchar(450)"); - - b.Property("SupplierDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("SupplyProportion") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId"); - - b.HasIndex("BranchId", "DocumentId", "Version", "CustomItemCode", "CustomSubItemCode", "SupplierCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_act_adjustment_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SecondaryActuralDiffReports.SecondaryActuralDiffReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_act_diff_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SecondaryActuralDiffReports.SecondaryActuralDiffReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("ActNoTaxAmount") - .HasColumnType("decimal(18,2)"); - - b.Property("ActPaymentPartyQty") - .HasColumnType("decimal(18,2)"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("CustomItemDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomSubItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("CustomSubItemDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffAmount") - .HasColumnType("decimal(18,2)"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ErpSubItemCode") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StaPaymentPartyQty") - .HasColumnType("decimal(18,2)"); - - b.Property("StdNoTaxAmount") - .HasColumnType("decimal(18,2)"); - - b.Property("SupplierCode") - .HasColumnType("nvarchar(450)"); - - b.Property("SupplierDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId"); - - b.HasIndex("BranchId", "DocumentId", "Version", "CustomItemCode", "CustomSubItemCode", "SupplierCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_sec_act_diff_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SendUnsettledDiffReports.SendUnsettledDiffReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BeginTime") - .HasColumnType("datetime2"); - - b.Property("BeginVersion") - .HasColumnType("nvarchar(max)"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EndTime") - .HasColumnType("datetime2"); - - b.Property("EndVersion") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_send_unsettled_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SendUnsettledDiffReports.SendUnsettledDiffReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("CP5Time") - .HasColumnType("datetime2"); - - b.Property("ChassisNumber") - .HasColumnType("nvarchar(450)"); - - b.Property("ChassisNumber2") - .HasColumnType("nvarchar(max)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("Extend1") - .HasColumnType("nvarchar(max)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("FISYear") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("ItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("ItemDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("KENNCode") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Model") - .HasColumnType("nvarchar(max)"); - - b.Property("OrderBillNum") - .HasColumnType("nvarchar(max)"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Qty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("SequenceNumber") - .HasColumnType("nvarchar(max)"); - - b.Property("SettledQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Status") - .HasColumnType("int"); - - b.Property("Version") - .HasColumnType("nvarchar(450)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentId", "Version", "ChassisNumber", "ItemCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_send_unsettled_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockFisDiffReports.StockFisDiffReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_stock_fis_diff_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockFisDiffReports.StockFisDiffReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EstimationType") - .HasColumnType("nvarchar(max)"); - - b.Property("FisQty") - .HasColumnType("decimal(18,2)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("ItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("ItemDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId"); - - b.HasIndex("BranchId", "DocumentId", "ItemCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_stock_fis_diff_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockSettledDiffReports.StockSettledDiffReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_stock_settled_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockSettledDiffReports.StockSettledDiffReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EstimationType") - .HasColumnType("nvarchar(max)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("ItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("ItemDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("R3SettledQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId"); - - b.HasIndex("BranchId", "DocumentId", "ItemCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_stock_settled_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockUnsettledDiffReports.StockUnsettledDiffReport", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CreatorName") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("CustomName") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("DocumentStatus") - .HasColumnType("int"); - - b.Property("DocumentType") - .HasColumnType("int"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("BranchId", "DocumentNumber") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_stock_unsettled_report"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockUnsettledDiffReports.StockUnsettledDiffReportDetail", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasMaxLength(36) - .HasColumnType("uniqueidentifier"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomCode") - .HasColumnType("nvarchar(max)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("DiffQty") - .HasColumnType("decimal(18,2)"); - - b.Property("DocumentId") - .HasColumnType("uniqueidentifier"); - - b.Property("DocumentNumber") - .IsRequired() - .HasMaxLength(64) - .HasColumnType("nvarchar(64)"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("EstimationType") - .HasColumnType("nvarchar(max)"); - - b.Property("FisUnSettledQty") - .HasColumnType("decimal(18,2)"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("ItemCode") - .HasColumnType("nvarchar(450)"); - - b.Property("ItemDesc") - .HasColumnType("nvarchar(max)"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Period") - .HasColumnType("nvarchar(max)"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.Property("StockQty") - .HasColumnType("decimal(18,2)"); - - b.Property("Version") - .HasColumnType("nvarchar(max)"); - - b.Property("Year") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("DocumentId"); - - b.HasIndex("BranchId", "DocumentId", "ItemCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_stock_unsettled_report_detail"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SupplierItemSetUps.SupplierItemSetUp", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BranchId") - .HasColumnType("uniqueidentifier"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasMaxLength(40) - .HasColumnType("nvarchar(40)") - .HasColumnName("ConcurrencyStamp"); - - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("CustomerCode") - .HasColumnType("nvarchar(450)"); - - b.Property("CustomerSupplierCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - - b.Property("Enabled") - .HasColumnType("bit"); - - b.Property("ErpItemCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ErpSupplierCode") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("nvarchar(36)"); - - b.Property("ExtraProperties") - .HasColumnType("nvarchar(max)") - .HasColumnName("ExtraProperties"); - - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - - b.Property("Remark") - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.HasIndex("ErpSupplierCode", "ErpItemCode", "CustomerSupplierCode", "CustomerCode") - .IsUnique() - .HasFilter("IsDeleted=0"); - - b.ToTable("Set_supplier_item_setup"); - }); - - modelBuilder.Entity("Win.Sfs.Shared.DomainBase.UpstreamDocument", b => - { - b.Property("UpstreamDocumentId") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier"); - - b.Property("BTNotConsignReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("BTSeqKBDiffReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("EstimatedStockDiffReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("JFNotConsignReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("SecondaryActuralAdjustmentReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("SecondaryActuralDiffReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("SendUnsettledDiffReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("Seq") - .HasColumnType("int"); - - b.Property("StockFisDiffReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("StockSettledDiffReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("StockUnsettledDiffReportId") - .HasColumnType("uniqueidentifier"); - - b.Property("UpstreamDocumentNumber") - .HasColumnType("nvarchar(max)"); - - b.Property("UpstreamDocumentType") - .HasColumnType("int"); - - b.HasKey("UpstreamDocumentId"); - - b.HasIndex("BTNotConsignReportId"); - - b.HasIndex("BTSeqKBDiffReportId"); - - b.HasIndex("EstimatedStockDiffReportId"); - - b.HasIndex("JFNotConsignReportId"); - - b.HasIndex("SecondaryActuralAdjustmentReportId"); - - b.HasIndex("SecondaryActuralDiffReportId"); - - b.HasIndex("SendUnsettledDiffReportId"); - - b.HasIndex("StockFisDiffReportId"); - - b.HasIndex("StockSettledDiffReportId"); - - b.HasIndex("StockUnsettledDiffReportId"); - - b.ToTable("UpstreamDocument"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTNotConsignReports.BTNotConsignReportDetail", b => - { - b.HasOne("Win.Sfs.SettleAccount.BTNotConsignReports.BTNotConsignReport", null) - .WithMany("BTNotConsignReportDetails") - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.NoAction) - .IsRequired(); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTSeqKBDiffReports.BTSeqKBDiffReportDetail", b => - { - b.HasOne("Win.Sfs.SettleAccount.BTSeqKBDiffReports.BTSeqKBDiffReport", null) - .WithMany("BTSeqKBDiffReportDetails") - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.NoAction) - .IsRequired(); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.EstimatedStockDiffReports.EstimatedStockDiffReportDetail", b => - { - b.HasOne("Win.Sfs.SettleAccount.EstimatedStockDiffReports.EstimatedStockDiffReport", null) - .WithMany("EstimatedStockDiffReportDetails") - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.NoAction) - .IsRequired(); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.JFNotConsignReports.JFNotConsignReportDetail", b => - { - b.HasOne("Win.Sfs.SettleAccount.JFNotConsignReports.JFNotConsignReport", null) - .WithMany("JFNotConsignReportDetails") - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.NoAction) - .IsRequired(); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SecondaryActuralAdjustmentReports.SecondaryActuralAdjustmentReportDetail", b => - { - b.HasOne("Win.Sfs.SettleAccount.SecondaryActuralAdjustmentReports.SecondaryActuralAdjustmentReport", null) - .WithMany("SecondaryActuralAdjustmentReportDetails") - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.NoAction) - .IsRequired(); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SecondaryActuralDiffReports.SecondaryActuralDiffReportDetail", b => - { - b.HasOne("Win.Sfs.SettleAccount.SecondaryActuralDiffReports.SecondaryActuralDiffReport", null) - .WithMany("SecondaryActuralDiffReportDetails") - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.NoAction) - .IsRequired(); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockFisDiffReports.StockFisDiffReportDetail", b => - { - b.HasOne("Win.Sfs.SettleAccount.StockFisDiffReports.StockFisDiffReport", null) - .WithMany("StockFisDiffReportDetails") - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.NoAction) - .IsRequired(); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockSettledDiffReports.StockSettledDiffReportDetail", b => - { - b.HasOne("Win.Sfs.SettleAccount.StockSettledDiffReports.StockSettledDiffReport", null) - .WithMany("StockSettledDiffReportDetails") - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.NoAction) - .IsRequired(); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockUnsettledDiffReports.StockUnsettledDiffReportDetail", b => - { - b.HasOne("Win.Sfs.SettleAccount.StockUnsettledDiffReports.StockUnsettledDiffReport", null) - .WithMany("StockUnsettledDiffReportDetails") - .HasForeignKey("DocumentId") - .OnDelete(DeleteBehavior.NoAction) - .IsRequired(); - }); - - modelBuilder.Entity("Win.Sfs.Shared.DomainBase.UpstreamDocument", b => - { - b.HasOne("Win.Sfs.SettleAccount.BTNotConsignReports.BTNotConsignReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("BTNotConsignReportId"); - - b.HasOne("Win.Sfs.SettleAccount.BTSeqKBDiffReports.BTSeqKBDiffReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("BTSeqKBDiffReportId"); - - b.HasOne("Win.Sfs.SettleAccount.EstimatedStockDiffReports.EstimatedStockDiffReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("EstimatedStockDiffReportId"); - - b.HasOne("Win.Sfs.SettleAccount.JFNotConsignReports.JFNotConsignReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("JFNotConsignReportId"); - - b.HasOne("Win.Sfs.SettleAccount.SecondaryActuralAdjustmentReports.SecondaryActuralAdjustmentReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("SecondaryActuralAdjustmentReportId"); - - b.HasOne("Win.Sfs.SettleAccount.SecondaryActuralDiffReports.SecondaryActuralDiffReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("SecondaryActuralDiffReportId"); - - b.HasOne("Win.Sfs.SettleAccount.SendUnsettledDiffReports.SendUnsettledDiffReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("SendUnsettledDiffReportId"); - - b.HasOne("Win.Sfs.SettleAccount.StockFisDiffReports.StockFisDiffReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("StockFisDiffReportId"); - - b.HasOne("Win.Sfs.SettleAccount.StockSettledDiffReports.StockSettledDiffReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("StockSettledDiffReportId"); - - b.HasOne("Win.Sfs.SettleAccount.StockUnsettledDiffReports.StockUnsettledDiffReport", null) - .WithMany("UpstreamDocuments") - .HasForeignKey("StockUnsettledDiffReportId"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTNotConsignReports.BTNotConsignReport", b => - { - b.Navigation("BTNotConsignReportDetails"); - - b.Navigation("UpstreamDocuments"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.BTSeqKBDiffReports.BTSeqKBDiffReport", b => - { - b.Navigation("BTSeqKBDiffReportDetails"); - - b.Navigation("UpstreamDocuments"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.EstimatedStockDiffReports.EstimatedStockDiffReport", b => - { - b.Navigation("EstimatedStockDiffReportDetails"); - - b.Navigation("UpstreamDocuments"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.JFNotConsignReports.JFNotConsignReport", b => - { - b.Navigation("JFNotConsignReportDetails"); - - b.Navigation("UpstreamDocuments"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SecondaryActuralAdjustmentReports.SecondaryActuralAdjustmentReport", b => - { - b.Navigation("SecondaryActuralAdjustmentReportDetails"); - - b.Navigation("UpstreamDocuments"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SecondaryActuralDiffReports.SecondaryActuralDiffReport", b => - { - b.Navigation("SecondaryActuralDiffReportDetails"); - - b.Navigation("UpstreamDocuments"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.SendUnsettledDiffReports.SendUnsettledDiffReport", b => - { - b.Navigation("UpstreamDocuments"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockFisDiffReports.StockFisDiffReport", b => - { - b.Navigation("StockFisDiffReportDetails"); - - b.Navigation("UpstreamDocuments"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockSettledDiffReports.StockSettledDiffReport", b => - { - b.Navigation("StockSettledDiffReportDetails"); - - b.Navigation("UpstreamDocuments"); - }); - - modelBuilder.Entity("Win.Sfs.SettleAccount.StockUnsettledDiffReports.StockUnsettledDiffReport", b => - { - b.Navigation("StockUnsettledDiffReportDetails"); - - b.Navigation("UpstreamDocuments"); - }); -#pragma warning restore 612, 618 - } - } -} From 9514b7076e022ca011d9999e0cef8591fcec76ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A6=20=E8=B5=B5?= <89237069@qq.com> Date: Mon, 10 Jul 2023 13:59:09 +0800 Subject: [PATCH 12/14] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../appsettings.Development.json | 6 +- .../Entities/BQ/IBBAC_BA_SERVICE.cs | 12 + .../Entities/BQ/IBBAC_CAN_SA_SERVICE.cs | 12 + .../Entities/BQ/IBBAC_NOT_SA_SERVICE.cs | 12 + .../Entities/BQ/IBBAC_PD_SERVICE.cs | 12 + .../Entities/BQ/IBBAC_SE_EDI_SERVICE.cs | 12 + .../Entities/BQ/IHBPO_BA_SERVICE.cs | 12 + .../Entities/BQ/IHBPO_CAN_SA_SERVICE.cs | 12 + .../Entities/BQ/IHBPO_NOT_SA_SERVICE.cs | 12 + .../Entities/BQ/IHBPO_PD_SERVICE.cs | 12 + .../Entities/BQ/IHBPO_SE_EDI_SERVICE.cs | 12 + .../Entities/BQ/IPUB_BA_SERVICE.cs | 12 + .../Entities/BQ/IPUB_CAN_SA_SERVICE.cs | 12 + .../Entities/BQ/IPUB_NOT_SA_SERVICE.cs | 12 + .../Entities/BQ/IPUB_PD_SERVICE.cs | 12 + .../Entities/BQ/BBAC_BA_SERVICE.cs | 12 + .../Entities/BQ/BBAC_CAN_SA_SERVICE.cs | 12 + .../Entities/BQ/BBAC_NOT_SA_SERVICE.cs | 12 + .../Entities/BQ/BBAC_PD_SERVICE.cs | 12 + .../Entities/BQ/BBAC_SE_EDI_Service.cs | 12 + .../Entities/BQ/HBPO_BA_SERVICE.cs | 12 + .../Entities/BQ/HBPO_CAN_SA_SERVICE.cs | 12 + .../Entities/BQ/HBPO_NOT_SA_SERVICE.cs | 12 + .../Entities/BQ/HBPO_PD_SERVICE.cs | 12 + .../Entities/BQ/HBPO_SE_EDI_SERVICE.cs | 12 + .../Entities/BQ/PUB_BA_SERVICE.cs | 12 + .../Entities/BQ/PUB_CAN_SA_SERVICE.cs | 12 + .../Entities/BQ/PUB_NOT_SA_SERVICE.cs | 12 + .../Entities/BQ/PUB_PD_SERVICE.cs | 12 + .../SettleAccount.Application.csproj | 2 +- .../20230710050546_init.Designer.cs | 3735 +++++++++++++++++ .../Migrations/20230710050546_init.cs | 1426 +++++++ .../SettleAccountDbContextModelSnapshot.cs | 3733 ++++++++++++++++ 33 files changed, 9234 insertions(+), 4 deletions(-) create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_BA_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_CAN_SA_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_NOT_SA_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_PD_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_SE_EDI_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_BA_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_CAN_SA_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_NOT_SA_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_PD_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_SE_EDI_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_BA_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_CAN_SA_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_NOT_SA_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_PD_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_BA_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_CAN_SA_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_NOT_SA_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_PD_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_SE_EDI_Service.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_BA_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_CAN_SA_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_NOT_SA_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_PD_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_SE_EDI_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_BA_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_CAN_SA_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_NOT_SA_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_PD_SERVICE.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230710050546_init.Designer.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230710050546_init.cs create mode 100644 code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/SettleAccountDbContextModelSnapshot.cs diff --git a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.Development.json b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.Development.json index ed864b5d..e82ab84b 100644 --- a/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.Development.json +++ b/code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/appsettings.Development.json @@ -1,4 +1,4 @@ -{ +{ "App": { "CorsOrigins": "https://*.abc.com,http://localhost:9528,http://149.223.116.5:8088" }, @@ -8,7 +8,7 @@ //}, "ConnectionStrings": { "Default": "Server=dev.ccwin-in.com,13319;Database=BJABP;User ID=ccwin-in;Password=Microsoft@2022;Trusted_Connection=False;TrustServerCertificate=True", - "SettleAccountService": "Server=dev.ccwin-in.com,13319;Database=BJABP;User ID=ccwin-in;Password=Microsoft@2022;Trusted_Connection=False;TrustServerCertificate=True;" + "SettleAccountService": "Server=dev.ccwin-in.com,13319;Database=BQ_SA;User ID=ccwin-in;Password=Microsoft@2022;Trusted_Connection=False;TrustServerCertificate=True;" }, "Logging": { "LogLevel": { @@ -120,4 +120,4 @@ -} \ No newline at end of file +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_BA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_BA_SERVICE.cs new file mode 100644 index 00000000..66043322 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_BA_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class2 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_CAN_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_CAN_SA_SERVICE.cs new file mode 100644 index 00000000..66043322 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_CAN_SA_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class2 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_NOT_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_NOT_SA_SERVICE.cs new file mode 100644 index 00000000..66043322 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_NOT_SA_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class2 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_PD_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_PD_SERVICE.cs new file mode 100644 index 00000000..66043322 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_PD_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class2 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_SE_EDI_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_SE_EDI_SERVICE.cs new file mode 100644 index 00000000..e3fc2544 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_SE_EDI_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class1 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_BA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_BA_SERVICE.cs new file mode 100644 index 00000000..66043322 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_BA_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class2 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_CAN_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_CAN_SA_SERVICE.cs new file mode 100644 index 00000000..66043322 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_CAN_SA_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class2 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_NOT_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_NOT_SA_SERVICE.cs new file mode 100644 index 00000000..66043322 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_NOT_SA_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class2 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_PD_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_PD_SERVICE.cs new file mode 100644 index 00000000..66043322 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_PD_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class2 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_SE_EDI_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_SE_EDI_SERVICE.cs new file mode 100644 index 00000000..66043322 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_SE_EDI_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class2 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_BA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_BA_SERVICE.cs new file mode 100644 index 00000000..e3fc2544 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_BA_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class1 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_CAN_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_CAN_SA_SERVICE.cs new file mode 100644 index 00000000..e3fc2544 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_CAN_SA_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class1 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_NOT_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_NOT_SA_SERVICE.cs new file mode 100644 index 00000000..f8bf1e14 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_NOT_SA_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class PUB_PD_SERVICE + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_PD_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_PD_SERVICE.cs new file mode 100644 index 00000000..e3fc2544 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_PD_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class1 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_BA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_BA_SERVICE.cs new file mode 100644 index 00000000..66043322 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_BA_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class2 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_CAN_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_CAN_SA_SERVICE.cs new file mode 100644 index 00000000..66043322 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_CAN_SA_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class2 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_NOT_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_NOT_SA_SERVICE.cs new file mode 100644 index 00000000..66043322 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_NOT_SA_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class2 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_PD_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_PD_SERVICE.cs new file mode 100644 index 00000000..66043322 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_PD_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class2 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_SE_EDI_Service.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_SE_EDI_Service.cs new file mode 100644 index 00000000..e3fc2544 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_SE_EDI_Service.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class1 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_BA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_BA_SERVICE.cs new file mode 100644 index 00000000..66043322 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_BA_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class2 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_CAN_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_CAN_SA_SERVICE.cs new file mode 100644 index 00000000..66043322 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_CAN_SA_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class2 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_NOT_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_NOT_SA_SERVICE.cs new file mode 100644 index 00000000..66043322 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_NOT_SA_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class2 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_PD_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_PD_SERVICE.cs new file mode 100644 index 00000000..66043322 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_PD_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class2 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_SE_EDI_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_SE_EDI_SERVICE.cs new file mode 100644 index 00000000..66043322 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_SE_EDI_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class2 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_BA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_BA_SERVICE.cs new file mode 100644 index 00000000..e3fc2544 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_BA_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class1 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_CAN_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_CAN_SA_SERVICE.cs new file mode 100644 index 00000000..e3fc2544 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_CAN_SA_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class1 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_NOT_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_NOT_SA_SERVICE.cs new file mode 100644 index 00000000..f8bf1e14 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_NOT_SA_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class PUB_PD_SERVICE + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_PD_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_PD_SERVICE.cs new file mode 100644 index 00000000..e3fc2544 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_PD_SERVICE.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Win.Sfs.SettleAccount.Entities.BQ +{ + internal class Class1 + { + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/SettleAccount.Application.csproj b/code/src/Modules/SettleAccount/src/SettleAccount.Application/SettleAccount.Application.csproj index db34af2d..13de6698 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/SettleAccount.Application.csproj +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/SettleAccount.Application.csproj @@ -1,4 +1,4 @@ - + diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230710050546_init.Designer.cs b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230710050546_init.Designer.cs new file mode 100644 index 00000000..82b59cdf --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230710050546_init.Designer.cs @@ -0,0 +1,3735 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Volo.Abp.EntityFrameworkCore; +using Win.Sfs.SettleAccount; + +namespace Win.Sfs.SettleAccount.Migrations +{ + [DbContext(typeof(SettleAccountDbContext))] + [Migration("20230710050546_init")] + partial class init + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) + .HasAnnotation("Relational:MaxIdentifierLength", 128) + .HasAnnotation("ProductVersion", "5.0.8") + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_CAN_SA", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("SettleBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("State") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_CAN_SA"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_CAN_SA_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Category") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("IsReturn") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SettleBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_CAN_SA_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_NOT_SA_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("Category") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("IsReturn") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SettleBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_NOT_SA_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_PD_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("RELU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("REPN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_PD_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_SA", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DNBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("State") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_SA"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_SA_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Category") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("IsReturn") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_SA_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_SE_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AssemblyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("BeginDate") + .HasColumnType("datetime2"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InjectionCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ShippingDate") + .HasColumnType("datetime2"); + + b.Property("Version") + .HasColumnType("int"); + + b.Property("WmsBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_SE_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_SE_EDI", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AssemblyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("BeginDate") + .HasColumnType("datetime2"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InjectionCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_SE_EDI"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_SE_REPORT", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AssemblyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("BeginDate") + .HasColumnType("datetime2"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("EDIQty") + .HasColumnType("decimal(18,2)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InjectionCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ShippingDate") + .HasColumnType("datetime2"); + + b.Property("Version") + .HasColumnType("int"); + + b.Property("WmsBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_SE_REPORT"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_SE_SA_REPORT", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AssemblyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Category") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("CustomerOfflineTime") + .HasColumnType("datetime2"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("EDIQty") + .HasColumnType("decimal(18,2)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("FixPrice") + .HasColumnType("decimal(18,2)"); + + b.Property("InjectionCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("MateType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("MaterialDes") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("MaterialNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("PJISSeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SEQty") + .HasColumnType("decimal(18,2)"); + + b.Property("SeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ShippingDate") + .HasColumnType("datetime2"); + + b.Property("Version") + .HasColumnType("int"); + + b.Property("WMSQty") + .HasColumnType("decimal(18,2)"); + + b.Property("WmsBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_SE_SA_REPORT"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_CAN_SA", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("SettleBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("State") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_CAN_SA"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_CAN_SA_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SettleBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_CAN_SA_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_NOT_SA_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SettleBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_NOT_SA_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_PD_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("RELU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("REPN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_PD_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_SA", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DNBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("RecordCount") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("State") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_SA"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_SA_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_SA_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_SE_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AssemblyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("BeginDate") + .HasColumnType("datetime2"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InjectionCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ShippingDate") + .HasColumnType("datetime2"); + + b.Property("Version") + .HasColumnType("int"); + + b.Property("WmsBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_SE_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_SE_EDI", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AssemblyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("BeginDate") + .HasColumnType("datetime2"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InjectionCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_SE_EDI"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_SE_REPORT", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AssemblyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("BeginDate") + .HasColumnType("datetime2"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("EDIQty") + .HasColumnType("decimal(18,2)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InjectionCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ShippingDate") + .HasColumnType("datetime2"); + + b.Property("Version") + .HasColumnType("int"); + + b.Property("WmsBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_SE_REPORT"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_SE_SA_REPORT", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AssemblyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Category") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("CustomerOfflineTime") + .HasColumnType("datetime2"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("EDIQty") + .HasColumnType("decimal(18,2)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("FixPrice") + .HasColumnType("decimal(18,2)"); + + b.Property("InjectionCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("MateType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("MaterialDes") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("MaterialNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("PJISSeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SEQty") + .HasColumnType("decimal(18,2)"); + + b.Property("SeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ShippingDate") + .HasColumnType("datetime2"); + + b.Property("Version") + .HasColumnType("int"); + + b.Property("WMSQty") + .HasColumnType("decimal(18,2)"); + + b.Property("WmsBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_SE_SA_REPORT"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.INVOICE_GRP", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("Amt") + .HasColumnType("decimal(18,2)"); + + b.Property("BusinessType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("FileName") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvbillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("RealnvBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("TaxAmt") + .HasColumnType("decimal(18,2)"); + + b.HasKey("Id"); + + b.ToTable("Set_INVOICE_GRP"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.INVOICE_MAP_GROUP", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("Amt") + .HasColumnType("decimal(18,2)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Extend1") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend2") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvbillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("SettleGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_INVOICE_MAP_GROUP"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.INVOICE_NOT_SETTLE", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Extend1") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend2") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU1") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("SettleGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_INVOICE_NOT_SETTLE"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.INVOICE_WAIT_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("Amt") + .HasColumnType("decimal(18,2)"); + + b.Property("BussiessType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Extend1") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend2") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend3") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend4") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvbillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PRICE") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_INVOICE_WAIT_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.JIT_SE_SA_REPORT", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AssemblyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Category") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("CustomerOfflineTime") + .HasColumnType("datetime2"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("EDIQty") + .HasColumnType("decimal(18,2)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("FixPrice") + .HasColumnType("decimal(18,2)"); + + b.Property("InjectionCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("MateType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("MaterialDes") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("MaterialNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("PJISSeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SEQty") + .HasColumnType("decimal(18,2)"); + + b.Property("SeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ShippingDate") + .HasColumnType("datetime2"); + + b.Property("Version") + .HasColumnType("int"); + + b.Property("WMSQty") + .HasColumnType("decimal(18,2)"); + + b.Property("WmsBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_JIT_SE_SA_REPORT"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.PUB_CAN_SA", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("BusinessType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("SettleBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("State") + .HasColumnType("int"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_PUB_CAN_SA"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.PUB_CAN_SA_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("BusinessType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SettleBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_PUB_CAN_SA_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.PUB_NOT_SA_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BusinessType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Extend1") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend2") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend3") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SettleBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_PUB_NOT_SA_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.PUB_PD_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("BusinessType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("RELU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("REPN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_PUB_PD_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.PUB_SA", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("State") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_PUB_SA"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.PUB_SA_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Extend1") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend2") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend3") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_PUB_SA_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.PUB_SE_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BeginDate") + .HasColumnType("datetime2"); + + b.Property("BusinessType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Extend1") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend2") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend3") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("ShippingDate") + .HasColumnType("datetime2"); + + b.Property("Version") + .HasColumnType("int"); + + b.Property("WmsBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_PUB_SE_DETAIL"); + }); + + modelBuilder.Entity("Win.Sfs.SettleAccount.Boms.Bom", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BomLevel") + .HasColumnType("int"); + + b.Property("BomType") + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("BranchId") + .HasColumnType("uniqueidentifier"); + + b.Property("ChildItemCode") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("ChildItemDesc") + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); + + b.Property("ChildItemUom") + .HasColumnType("nvarchar(max)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("EffectiveTime") + .HasColumnType("datetime2"); + + b.Property("Enabled") + .HasColumnType("bit"); + + b.Property("ExpireTime") + .HasColumnType("datetime2"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("Factory") + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("IssuePosition") + .HasColumnType("nvarchar(max)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("OperateProcess") + .HasColumnType("int"); + + b.Property("ParentId") + .HasColumnType("uniqueidentifier"); + + b.Property("ParentItemCode") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("ParentItemDesc") + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); + + b.Property("Period") + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("Remark") + .HasColumnType("nvarchar(max)"); + + b.Property("ScrapPercent") + .HasColumnType("decimal(18,2)"); + + b.Property("Version") + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("Year") + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.HasKey("Id"); + + b.HasIndex("ParentItemCode", "ChildItemCode", "Version") + .IsUnique() + .HasFilter("IsDeleted=0"); + + b.ToTable("Set_bom"); + }); + + modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Boms.BomVersion", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BranchId") + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("CustomerCode") + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("bit"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("Factory") + .HasColumnType("nvarchar(max)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("Period") + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("Remark") + .HasColumnType("nvarchar(max)"); + + b.Property("Version") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("Year") + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.HasKey("Id"); + + b.ToTable("Set_bom_version"); + }); + + modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Controls.CentralizedControl", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BranchId") + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("bit"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("Period") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("Remark") + .HasColumnType("nvarchar(max)"); + + b.Property("State") + .HasColumnType("int"); + + b.Property("Version") + .HasColumnType("nvarchar(max)"); + + b.Property("Year") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.HasKey("Id"); + + b.HasIndex("Year", "Period") + .IsUnique() + .HasFilter("IsDeleted=0"); + + b.ToTable("Set_control"); + }); + + modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Materials.Material", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BranchId") + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("CustomerPartCode") + .HasColumnType("nvarchar(max)"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("bit"); + + b.Property("EstimateType") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("EstimateTypeDesc") + .HasColumnType("nvarchar(max)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("Factory") + .HasColumnType("nvarchar(max)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("MaterialCode") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("MaterialDesc") + .HasColumnType("nvarchar(max)"); + + b.Property("Remark") + .HasColumnType("nvarchar(max)"); + + b.Property("Unit") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.HasKey("Id"); + + b.HasIndex("MaterialCode") + .IsUnique() + .HasFilter("IsDeleted=0"); + + b.ToTable("Set_material"); + }); + + modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Prices.PriceList", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BeginDate") + .HasColumnType("datetime2"); + + b.Property("BranchId") + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("CustomerCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("bit"); + + b.Property("EndDate") + .HasColumnType("datetime2"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("MaterialCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ParentId") + .HasColumnType("uniqueidentifier"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Remark") + .HasColumnType("nvarchar(max)"); + + b.Property("Type") + .HasColumnType("int"); + + b.Property("Version") + .HasColumnType("nvarchar(max)"); + + b.HasKey("Id"); + + b.ToTable("Set_PriceList"); + }); + + modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Prices.PriceListBJ", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BeginDate") + .HasColumnType("datetime2"); + + b.Property("BranchId") + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("CustomerCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("bit"); + + b.Property("EndDate") + .HasColumnType("datetime2"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("MaterialCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ParentId") + .HasColumnType("uniqueidentifier"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Remark") + .HasColumnType("nvarchar(max)"); + + b.Property("Type") + .HasColumnType("int"); + + b.Property("Version") + .HasColumnType("nvarchar(max)"); + + b.HasKey("Id"); + + b.ToTable("Set_PriceListBJ"); + }); + + modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Prices.PriceListVersion", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BranchId") + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("bit"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("Factory") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("Period") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Remark") + .HasColumnType("nvarchar(max)"); + + b.Property("Version") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Year") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_PriceListVersion"); + }); + + modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Prices.PriceListVersionBJ", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BranchId") + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("bit"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("Factory") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("Period") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Remark") + .HasColumnType("nvarchar(max)"); + + b.Property("Version") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Year") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_PriceListVersionBJ"); + }); + + modelBuilder.Entity("Win.Sfs.SettleAccount.MaterialRelationships.MaterialRelationship", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AppraisalCategory") + .HasColumnType("nvarchar(max)"); + + b.Property("BranchId") + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("bit"); + + b.Property("ErpMaterialCode") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("MaterialDesc") + .HasColumnType("nvarchar(max)"); + + b.Property("MaterialProperty") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("Remark") + .HasColumnType("nvarchar(max)"); + + b.Property("SettleMaterialCode") + .HasColumnType("nvarchar(max)"); + + b.Property("ShipMaterailCode") + .HasColumnType("nvarchar(max)"); + + b.HasKey("Id"); + + b.HasIndex("ErpMaterialCode") + .IsUnique() + .HasFilter("IsDeleted=0"); + + b.ToTable("Set_relationship"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230710050546_init.cs b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230710050546_init.cs new file mode 100644 index 00000000..c47dd904 --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230710050546_init.cs @@ -0,0 +1,1426 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Win.Sfs.SettleAccount.Migrations +{ + public partial class init : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "Set_BBAC_CAN_SA", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Version = table.Column(type: "int", nullable: false), + BillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SettleBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + State = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + InvGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_BBAC_CAN_SA", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_BBAC_CAN_SA_DETAIL", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + SettleBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Site = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Category = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + IsReturn = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + Version = table.Column(type: "int", nullable: false), + Price = table.Column(type: "decimal(18,2)", nullable: false), + BillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SettleDate = table.Column(type: "datetime2", nullable: false), + InvGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + GroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_BBAC_CAN_SA_DETAIL", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_BBAC_NOT_SA_DETAIL", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Site = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Category = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + IsReturn = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + Price = table.Column(type: "decimal(18,2)", nullable: false), + Version = table.Column(type: "int", nullable: false), + SettleBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SettleDate = table.Column(type: "datetime2", nullable: false), + InvGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + GroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_BBAC_NOT_SA_DETAIL", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_BBAC_PD_DETAIL", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Site = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + Version = table.Column(type: "int", nullable: false), + BillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + Price = table.Column(type: "decimal(18,2)", nullable: false), + InvGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SettleDate = table.Column(type: "datetime2", nullable: false), + GroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + RELU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + REPN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_BBAC_PD_DETAIL", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_BBAC_SA", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Version = table.Column(type: "int", nullable: false), + BillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + DNBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + State = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_BBAC_SA", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_BBAC_SA_DETAIL", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Site = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Category = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + IsReturn = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + Version = table.Column(type: "int", nullable: false), + Price = table.Column(type: "decimal(18,2)", nullable: false), + BillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SettleDate = table.Column(type: "datetime2", nullable: false), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + GroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_BBAC_SA_DETAIL", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_BBAC_SE_DETAIL", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + SeqNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + AssemblyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + InjectionCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + BeginDate = table.Column(type: "datetime2", nullable: false), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + Version = table.Column(type: "int", nullable: false), + ShippingDate = table.Column(type: "datetime2", nullable: false), + WmsBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_BBAC_SE_DETAIL", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_BBAC_SE_EDI", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Version = table.Column(type: "int", nullable: false), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SeqNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + AssemblyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + InjectionCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + BeginDate = table.Column(type: "datetime2", nullable: false), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_BBAC_SE_EDI", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_BBAC_SE_REPORT", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Version = table.Column(type: "int", nullable: false), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SeqNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + AssemblyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + InjectionCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + EDIQty = table.Column(type: "decimal(18,2)", nullable: false), + BeginDate = table.Column(type: "datetime2", nullable: false), + ShippingDate = table.Column(type: "datetime2", nullable: false), + WmsBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_BBAC_SE_REPORT", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_BBAC_SE_SA_REPORT", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Category = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + WmsBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ShippingDate = table.Column(type: "datetime2", nullable: false), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SeqNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PJISSeqNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + MaterialNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + MaterialDes = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CustomerOfflineTime = table.Column(type: "datetime2", nullable: false), + AssemblyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + InjectionCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SEQty = table.Column(type: "decimal(18,2)", nullable: false), + WMSQty = table.Column(type: "decimal(18,2)", nullable: false), + EDIQty = table.Column(type: "decimal(18,2)", nullable: false), + MateType = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + FixPrice = table.Column(type: "decimal(18,2)", nullable: false), + Version = table.Column(type: "int", nullable: false), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_BBAC_SE_SA_REPORT", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_bom", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), + Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), + Factory = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), + Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), + ParentItemCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), + ParentItemDesc = table.Column(type: "nvarchar(2048)", maxLength: 2048, nullable: true), + ChildItemCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), + ChildItemDesc = table.Column(type: "nvarchar(2048)", maxLength: 2048, nullable: true), + ChildItemUom = table.Column(type: "nvarchar(max)", nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + OperateProcess = table.Column(type: "int", nullable: false), + ScrapPercent = table.Column(type: "decimal(18,2)", nullable: false), + BomType = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), + EffectiveTime = table.Column(type: "datetime2", nullable: false), + ExpireTime = table.Column(type: "datetime2", nullable: false), + IssuePosition = table.Column(type: "nvarchar(max)", nullable: true), + BomLevel = table.Column(type: "int", nullable: false), + ParentId = table.Column(type: "uniqueidentifier", nullable: false), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + BranchId = table.Column(type: "uniqueidentifier", nullable: false), + Enabled = table.Column(type: "bit", nullable: false), + Remark = table.Column(type: "nvarchar(max)", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_bom", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_bom_version", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), + Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), + Version = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), + Factory = table.Column(type: "nvarchar(max)", nullable: true), + CustomerCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + BranchId = table.Column(type: "uniqueidentifier", nullable: false), + Enabled = table.Column(type: "bit", nullable: false), + Remark = table.Column(type: "nvarchar(max)", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_bom_version", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_control", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Year = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), + Period = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), + Version = table.Column(type: "nvarchar(max)", nullable: true), + State = table.Column(type: "int", nullable: false), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + BranchId = table.Column(type: "uniqueidentifier", nullable: false), + Enabled = table.Column(type: "bit", nullable: false), + Remark = table.Column(type: "nvarchar(max)", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_control", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_HBPO_CAN_SA", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Version = table.Column(type: "int", nullable: false), + SettleBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + BillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + State = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + InvGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_HBPO_CAN_SA", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_HBPO_CAN_SA_DETAIL", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + SettleBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Site = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + Version = table.Column(type: "int", nullable: false), + Price = table.Column(type: "decimal(18,2)", nullable: false), + BillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SettleDate = table.Column(type: "datetime2", nullable: false), + InvGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + GroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_HBPO_CAN_SA_DETAIL", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_HBPO_NOT_SA_DETAIL", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Site = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + Price = table.Column(type: "decimal(18,2)", nullable: false), + Version = table.Column(type: "int", nullable: false), + SettleBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SettleDate = table.Column(type: "datetime2", nullable: false), + InvGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + GroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_HBPO_NOT_SA_DETAIL", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_HBPO_PD_DETAIL", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Site = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + Version = table.Column(type: "int", nullable: false), + BillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + Price = table.Column(type: "decimal(18,2)", nullable: false), + InvGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SettleDate = table.Column(type: "datetime2", nullable: false), + GroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + RELU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + REPN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_HBPO_PD_DETAIL", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_HBPO_SA", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Version = table.Column(type: "int", nullable: false), + BillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + DNBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + State = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + RecordCount = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_HBPO_SA", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_HBPO_SA_DETAIL", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Site = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + InvGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + Version = table.Column(type: "int", nullable: false), + Price = table.Column(type: "decimal(18,2)", nullable: false), + BillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SettleDate = table.Column(type: "datetime2", nullable: false), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + GroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_HBPO_SA_DETAIL", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_HBPO_SE_DETAIL", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + SeqNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + AssemblyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + InjectionCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + BeginDate = table.Column(type: "datetime2", nullable: false), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + Version = table.Column(type: "int", nullable: false), + ShippingDate = table.Column(type: "datetime2", nullable: false), + WmsBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_HBPO_SE_DETAIL", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_HBPO_SE_EDI", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Version = table.Column(type: "int", nullable: false), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SeqNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + AssemblyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + InjectionCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + BeginDate = table.Column(type: "datetime2", nullable: false), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_HBPO_SE_EDI", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_HBPO_SE_REPORT", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Version = table.Column(type: "int", nullable: false), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SeqNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + AssemblyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + InjectionCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + EDIQty = table.Column(type: "decimal(18,2)", nullable: false), + BeginDate = table.Column(type: "datetime2", nullable: false), + ShippingDate = table.Column(type: "datetime2", nullable: false), + WmsBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_HBPO_SE_REPORT", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_HBPO_SE_SA_REPORT", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Category = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SeqNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PJISSeqNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + MaterialNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + MaterialDes = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CustomerOfflineTime = table.Column(type: "datetime2", nullable: false), + AssemblyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + InjectionCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SEQty = table.Column(type: "decimal(18,2)", nullable: false), + WMSQty = table.Column(type: "decimal(18,2)", nullable: false), + EDIQty = table.Column(type: "decimal(18,2)", nullable: false), + MateType = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + FixPrice = table.Column(type: "decimal(18,2)", nullable: false), + Version = table.Column(type: "int", nullable: false), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + ShippingDate = table.Column(type: "datetime2", nullable: false), + WmsBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_HBPO_SE_SA_REPORT", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_INVOICE_GRP", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + RealnvBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + InvbillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Amt = table.Column(type: "decimal(18,2)", nullable: false), + TaxAmt = table.Column(type: "decimal(18,2)", nullable: false), + InvGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + FileName = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + BusinessType = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_INVOICE_GRP", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_INVOICE_MAP_GROUP", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Version = table.Column(type: "int", nullable: false), + InvbillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + InvGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SettleGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Amt = table.Column(type: "decimal(18,2)", nullable: false), + Extend1 = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Extend2 = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_INVOICE_MAP_GROUP", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_INVOICE_NOT_SETTLE", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Version = table.Column(type: "int", nullable: false), + InvGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SettleGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + LU1 = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Extend1 = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Extend2 = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_INVOICE_NOT_SETTLE", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_INVOICE_WAIT_DETAIL", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Version = table.Column(type: "int", nullable: false), + InvbillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + InvGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PRICE = table.Column(type: "decimal(18,2)", nullable: false), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + Amt = table.Column(type: "decimal(18,2)", nullable: false), + BussiessType = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Extend1 = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Extend2 = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Extend3 = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Extend4 = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_INVOICE_WAIT_DETAIL", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_JIT_SE_SA_REPORT", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Category = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SeqNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PJISSeqNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + MaterialNumber = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + MaterialDes = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CustomerOfflineTime = table.Column(type: "datetime2", nullable: false), + AssemblyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + InjectionCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SEQty = table.Column(type: "decimal(18,2)", nullable: false), + WMSQty = table.Column(type: "decimal(18,2)", nullable: false), + EDIQty = table.Column(type: "decimal(18,2)", nullable: false), + MateType = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + FixPrice = table.Column(type: "decimal(18,2)", nullable: false), + Version = table.Column(type: "int", nullable: false), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + ShippingDate = table.Column(type: "datetime2", nullable: false), + WmsBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_JIT_SE_SA_REPORT", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_material", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Factory = table.Column(type: "nvarchar(max)", nullable: true), + MaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), + MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), + Unit = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), + EstimateType = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), + EstimateTypeDesc = table.Column(type: "nvarchar(max)", nullable: true), + CustomerPartCode = table.Column(type: "nvarchar(max)", nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + BranchId = table.Column(type: "uniqueidentifier", nullable: false), + Enabled = table.Column(type: "bit", nullable: false), + Remark = table.Column(type: "nvarchar(max)", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_material", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_PriceList", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + CustomerCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Version = table.Column(type: "nvarchar(max)", nullable: true), + BeginDate = table.Column(type: "datetime2", nullable: false), + EndDate = table.Column(type: "datetime2", nullable: false), + Price = table.Column(type: "decimal(18,2)", nullable: false), + MaterialCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Type = table.Column(type: "int", nullable: false), + ParentId = table.Column(type: "uniqueidentifier", nullable: false), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + BranchId = table.Column(type: "uniqueidentifier", nullable: false), + Enabled = table.Column(type: "bit", nullable: false), + Remark = table.Column(type: "nvarchar(max)", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_PriceList", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_PriceListBJ", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + CustomerCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Version = table.Column(type: "nvarchar(max)", nullable: true), + BeginDate = table.Column(type: "datetime2", nullable: false), + EndDate = table.Column(type: "datetime2", nullable: false), + Price = table.Column(type: "decimal(18,2)", nullable: false), + MaterialCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Type = table.Column(type: "int", nullable: false), + ParentId = table.Column(type: "uniqueidentifier", nullable: false), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + BranchId = table.Column(type: "uniqueidentifier", nullable: false), + Enabled = table.Column(type: "bit", nullable: false), + Remark = table.Column(type: "nvarchar(max)", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_PriceListBJ", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_PriceListVersion", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + BranchId = table.Column(type: "uniqueidentifier", nullable: false), + Enabled = table.Column(type: "bit", nullable: false), + Remark = table.Column(type: "nvarchar(max)", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_PriceListVersion", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_PriceListVersionBJ", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Year = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Period = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Version = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Factory = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + BranchId = table.Column(type: "uniqueidentifier", nullable: false), + Enabled = table.Column(type: "bit", nullable: false), + Remark = table.Column(type: "nvarchar(max)", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_PriceListVersionBJ", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_PUB_CAN_SA", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Version = table.Column(type: "int", nullable: false), + SettleBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + BillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + State = table.Column(type: "int", nullable: false), + BusinessType = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + InvGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_PUB_CAN_SA", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_PUB_CAN_SA_DETAIL", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + SettleBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Site = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + BusinessType = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + Version = table.Column(type: "int", nullable: false), + Price = table.Column(type: "decimal(18,2)", nullable: false), + BillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SettleDate = table.Column(type: "datetime2", nullable: false), + InvGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + GroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_PUB_CAN_SA_DETAIL", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_PUB_NOT_SA_DETAIL", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Site = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Extend1 = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Extend2 = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Extend3 = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + BusinessType = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + Price = table.Column(type: "decimal(18,2)", nullable: false), + Version = table.Column(type: "int", nullable: false), + SettleBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SettleDate = table.Column(type: "datetime2", nullable: false), + InvGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + GroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_PUB_NOT_SA_DETAIL", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_PUB_PD_DETAIL", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Site = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + BusinessType = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + Version = table.Column(type: "int", nullable: false), + BillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + Price = table.Column(type: "decimal(18,2)", nullable: false), + InvGroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SettleDate = table.Column(type: "datetime2", nullable: false), + GroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + RELU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + REPN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_PUB_PD_DETAIL", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_PUB_SA", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Version = table.Column(type: "int", nullable: false), + BillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + State = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_PUB_SA", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_PUB_SA_DETAIL", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Site = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Extend1 = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Extend2 = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Extend3 = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + Version = table.Column(type: "int", nullable: false), + Price = table.Column(type: "decimal(18,2)", nullable: false), + BillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + SettleDate = table.Column(type: "datetime2", nullable: false), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false), + GroupNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_PUB_SA_DETAIL", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_PUB_SE_DETAIL", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + Extend1 = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Extend2 = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Extend3 = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + BusinessType = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + BeginDate = table.Column(type: "datetime2", nullable: false), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + Version = table.Column(type: "int", nullable: false), + ShippingDate = table.Column(type: "datetime2", nullable: false), + WmsBillNum = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + LU = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + PN = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + KeyCode = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), + Qty = table.Column(type: "decimal(18,2)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_PUB_SE_DETAIL", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Set_relationship", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false), + ErpMaterialCode = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), + MaterialDesc = table.Column(type: "nvarchar(max)", nullable: true), + MaterialProperty = table.Column(type: "nvarchar(36)", maxLength: 36, nullable: false), + SettleMaterialCode = table.Column(type: "nvarchar(max)", nullable: true), + ShipMaterailCode = table.Column(type: "nvarchar(max)", nullable: true), + AppraisalCategory = table.Column(type: "nvarchar(max)", nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: true), + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: true), + CreationTime = table.Column(type: "datetime2", nullable: false), + CreatorId = table.Column(type: "uniqueidentifier", nullable: true), + LastModificationTime = table.Column(type: "datetime2", nullable: true), + LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), + IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), + DeleterId = table.Column(type: "uniqueidentifier", nullable: true), + DeletionTime = table.Column(type: "datetime2", nullable: true), + BranchId = table.Column(type: "uniqueidentifier", nullable: false), + Enabled = table.Column(type: "bit", nullable: false), + Remark = table.Column(type: "nvarchar(max)", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Set_relationship", x => x.Id); + }); + + migrationBuilder.CreateIndex( + name: "IX_Set_bom_ParentItemCode_ChildItemCode_Version", + table: "Set_bom", + columns: new[] { "ParentItemCode", "ChildItemCode", "Version" }, + unique: true, + filter: "IsDeleted=0"); + + migrationBuilder.CreateIndex( + name: "IX_Set_control_Year_Period", + table: "Set_control", + columns: new[] { "Year", "Period" }, + unique: true, + filter: "IsDeleted=0"); + + migrationBuilder.CreateIndex( + name: "IX_Set_material_MaterialCode", + table: "Set_material", + column: "MaterialCode", + unique: true, + filter: "IsDeleted=0"); + + migrationBuilder.CreateIndex( + name: "IX_Set_relationship_ErpMaterialCode", + table: "Set_relationship", + column: "ErpMaterialCode", + unique: true, + filter: "IsDeleted=0"); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "Set_BBAC_CAN_SA"); + + migrationBuilder.DropTable( + name: "Set_BBAC_CAN_SA_DETAIL"); + + migrationBuilder.DropTable( + name: "Set_BBAC_NOT_SA_DETAIL"); + + migrationBuilder.DropTable( + name: "Set_BBAC_PD_DETAIL"); + + migrationBuilder.DropTable( + name: "Set_BBAC_SA"); + + migrationBuilder.DropTable( + name: "Set_BBAC_SA_DETAIL"); + + migrationBuilder.DropTable( + name: "Set_BBAC_SE_DETAIL"); + + migrationBuilder.DropTable( + name: "Set_BBAC_SE_EDI"); + + migrationBuilder.DropTable( + name: "Set_BBAC_SE_REPORT"); + + migrationBuilder.DropTable( + name: "Set_BBAC_SE_SA_REPORT"); + + migrationBuilder.DropTable( + name: "Set_bom"); + + migrationBuilder.DropTable( + name: "Set_bom_version"); + + migrationBuilder.DropTable( + name: "Set_control"); + + migrationBuilder.DropTable( + name: "Set_HBPO_CAN_SA"); + + migrationBuilder.DropTable( + name: "Set_HBPO_CAN_SA_DETAIL"); + + migrationBuilder.DropTable( + name: "Set_HBPO_NOT_SA_DETAIL"); + + migrationBuilder.DropTable( + name: "Set_HBPO_PD_DETAIL"); + + migrationBuilder.DropTable( + name: "Set_HBPO_SA"); + + migrationBuilder.DropTable( + name: "Set_HBPO_SA_DETAIL"); + + migrationBuilder.DropTable( + name: "Set_HBPO_SE_DETAIL"); + + migrationBuilder.DropTable( + name: "Set_HBPO_SE_EDI"); + + migrationBuilder.DropTable( + name: "Set_HBPO_SE_REPORT"); + + migrationBuilder.DropTable( + name: "Set_HBPO_SE_SA_REPORT"); + + migrationBuilder.DropTable( + name: "Set_INVOICE_GRP"); + + migrationBuilder.DropTable( + name: "Set_INVOICE_MAP_GROUP"); + + migrationBuilder.DropTable( + name: "Set_INVOICE_NOT_SETTLE"); + + migrationBuilder.DropTable( + name: "Set_INVOICE_WAIT_DETAIL"); + + migrationBuilder.DropTable( + name: "Set_JIT_SE_SA_REPORT"); + + migrationBuilder.DropTable( + name: "Set_material"); + + migrationBuilder.DropTable( + name: "Set_PriceList"); + + migrationBuilder.DropTable( + name: "Set_PriceListBJ"); + + migrationBuilder.DropTable( + name: "Set_PriceListVersion"); + + migrationBuilder.DropTable( + name: "Set_PriceListVersionBJ"); + + migrationBuilder.DropTable( + name: "Set_PUB_CAN_SA"); + + migrationBuilder.DropTable( + name: "Set_PUB_CAN_SA_DETAIL"); + + migrationBuilder.DropTable( + name: "Set_PUB_NOT_SA_DETAIL"); + + migrationBuilder.DropTable( + name: "Set_PUB_PD_DETAIL"); + + migrationBuilder.DropTable( + name: "Set_PUB_SA"); + + migrationBuilder.DropTable( + name: "Set_PUB_SA_DETAIL"); + + migrationBuilder.DropTable( + name: "Set_PUB_SE_DETAIL"); + + migrationBuilder.DropTable( + name: "Set_relationship"); + } + } +} diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/SettleAccountDbContextModelSnapshot.cs b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/SettleAccountDbContextModelSnapshot.cs new file mode 100644 index 00000000..e893d82a --- /dev/null +++ b/code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/SettleAccountDbContextModelSnapshot.cs @@ -0,0 +1,3733 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Volo.Abp.EntityFrameworkCore; +using Win.Sfs.SettleAccount; + +namespace Win.Sfs.SettleAccount.Migrations +{ + [DbContext(typeof(SettleAccountDbContext))] + partial class SettleAccountDbContextModelSnapshot : ModelSnapshot + { + protected override void BuildModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) + .HasAnnotation("Relational:MaxIdentifierLength", 128) + .HasAnnotation("ProductVersion", "5.0.8") + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_CAN_SA", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("SettleBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("State") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_CAN_SA"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_CAN_SA_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Category") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("IsReturn") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SettleBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_CAN_SA_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_NOT_SA_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("Category") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("IsReturn") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SettleBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_NOT_SA_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_PD_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("RELU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("REPN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_PD_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_SA", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DNBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("State") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_SA"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_SA_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Category") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("IsReturn") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_SA_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_SE_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AssemblyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("BeginDate") + .HasColumnType("datetime2"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InjectionCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ShippingDate") + .HasColumnType("datetime2"); + + b.Property("Version") + .HasColumnType("int"); + + b.Property("WmsBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_SE_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_SE_EDI", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AssemblyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("BeginDate") + .HasColumnType("datetime2"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InjectionCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_SE_EDI"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_SE_REPORT", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AssemblyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("BeginDate") + .HasColumnType("datetime2"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("EDIQty") + .HasColumnType("decimal(18,2)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InjectionCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ShippingDate") + .HasColumnType("datetime2"); + + b.Property("Version") + .HasColumnType("int"); + + b.Property("WmsBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_SE_REPORT"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.BBAC_SE_SA_REPORT", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AssemblyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Category") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("CustomerOfflineTime") + .HasColumnType("datetime2"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("EDIQty") + .HasColumnType("decimal(18,2)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("FixPrice") + .HasColumnType("decimal(18,2)"); + + b.Property("InjectionCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("MateType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("MaterialDes") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("MaterialNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("PJISSeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SEQty") + .HasColumnType("decimal(18,2)"); + + b.Property("SeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ShippingDate") + .HasColumnType("datetime2"); + + b.Property("Version") + .HasColumnType("int"); + + b.Property("WMSQty") + .HasColumnType("decimal(18,2)"); + + b.Property("WmsBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_BBAC_SE_SA_REPORT"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_CAN_SA", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("SettleBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("State") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_CAN_SA"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_CAN_SA_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SettleBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_CAN_SA_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_NOT_SA_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SettleBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_NOT_SA_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_PD_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("RELU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("REPN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_PD_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_SA", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DNBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("RecordCount") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("State") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_SA"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_SA_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_SA_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_SE_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AssemblyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("BeginDate") + .HasColumnType("datetime2"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InjectionCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ShippingDate") + .HasColumnType("datetime2"); + + b.Property("Version") + .HasColumnType("int"); + + b.Property("WmsBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_SE_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_SE_EDI", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AssemblyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("BeginDate") + .HasColumnType("datetime2"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InjectionCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_SE_EDI"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_SE_REPORT", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AssemblyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("BeginDate") + .HasColumnType("datetime2"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("EDIQty") + .HasColumnType("decimal(18,2)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InjectionCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ShippingDate") + .HasColumnType("datetime2"); + + b.Property("Version") + .HasColumnType("int"); + + b.Property("WmsBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_SE_REPORT"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.HBPO_SE_SA_REPORT", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AssemblyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Category") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("CustomerOfflineTime") + .HasColumnType("datetime2"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("EDIQty") + .HasColumnType("decimal(18,2)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("FixPrice") + .HasColumnType("decimal(18,2)"); + + b.Property("InjectionCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("MateType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("MaterialDes") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("MaterialNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("PJISSeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SEQty") + .HasColumnType("decimal(18,2)"); + + b.Property("SeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ShippingDate") + .HasColumnType("datetime2"); + + b.Property("Version") + .HasColumnType("int"); + + b.Property("WMSQty") + .HasColumnType("decimal(18,2)"); + + b.Property("WmsBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_HBPO_SE_SA_REPORT"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.INVOICE_GRP", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("Amt") + .HasColumnType("decimal(18,2)"); + + b.Property("BusinessType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("FileName") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvbillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("RealnvBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("TaxAmt") + .HasColumnType("decimal(18,2)"); + + b.HasKey("Id"); + + b.ToTable("Set_INVOICE_GRP"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.INVOICE_MAP_GROUP", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("Amt") + .HasColumnType("decimal(18,2)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Extend1") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend2") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvbillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("SettleGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_INVOICE_MAP_GROUP"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.INVOICE_NOT_SETTLE", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Extend1") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend2") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU1") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("SettleGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_INVOICE_NOT_SETTLE"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.INVOICE_WAIT_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("Amt") + .HasColumnType("decimal(18,2)"); + + b.Property("BussiessType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Extend1") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend2") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend3") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend4") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvbillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PRICE") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_INVOICE_WAIT_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.JIT_SE_SA_REPORT", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AssemblyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Category") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("CustomerOfflineTime") + .HasColumnType("datetime2"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("EDIQty") + .HasColumnType("decimal(18,2)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("FixPrice") + .HasColumnType("decimal(18,2)"); + + b.Property("InjectionCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("MateType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("MaterialDes") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("MaterialNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("PJISSeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SEQty") + .HasColumnType("decimal(18,2)"); + + b.Property("SeqNumber") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ShippingDate") + .HasColumnType("datetime2"); + + b.Property("Version") + .HasColumnType("int"); + + b.Property("WMSQty") + .HasColumnType("decimal(18,2)"); + + b.Property("WmsBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_JIT_SE_SA_REPORT"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.PUB_CAN_SA", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("BusinessType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("SettleBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("State") + .HasColumnType("int"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_PUB_CAN_SA"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.PUB_CAN_SA_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("BusinessType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SettleBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_PUB_CAN_SA_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.PUB_NOT_SA_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BusinessType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Extend1") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend2") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend3") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SettleBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_PUB_NOT_SA_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.PUB_PD_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("BusinessType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("InvGroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("RELU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("REPN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_PUB_PD_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.PUB_SA", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("State") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_PUB_SA"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.PUB_SA_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Extend1") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend2") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend3") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("GroupNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("SettleDate") + .HasColumnType("datetime2"); + + b.Property("Site") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Version") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("Set_PUB_SA_DETAIL"); + }); + + modelBuilder.Entity("SettleAccount.Domain.BQ.PUB_SE_DETAIL", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BeginDate") + .HasColumnType("datetime2"); + + b.Property("BusinessType") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Extend1") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend2") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Extend3") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("KeyCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LU") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("PN") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("ShippingDate") + .HasColumnType("datetime2"); + + b.Property("Version") + .HasColumnType("int"); + + b.Property("WmsBillNum") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_PUB_SE_DETAIL"); + }); + + modelBuilder.Entity("Win.Sfs.SettleAccount.Boms.Bom", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BomLevel") + .HasColumnType("int"); + + b.Property("BomType") + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("BranchId") + .HasColumnType("uniqueidentifier"); + + b.Property("ChildItemCode") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("ChildItemDesc") + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); + + b.Property("ChildItemUom") + .HasColumnType("nvarchar(max)"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("EffectiveTime") + .HasColumnType("datetime2"); + + b.Property("Enabled") + .HasColumnType("bit"); + + b.Property("ExpireTime") + .HasColumnType("datetime2"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("Factory") + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("IssuePosition") + .HasColumnType("nvarchar(max)"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("OperateProcess") + .HasColumnType("int"); + + b.Property("ParentId") + .HasColumnType("uniqueidentifier"); + + b.Property("ParentItemCode") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("ParentItemDesc") + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); + + b.Property("Period") + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("Qty") + .HasColumnType("decimal(18,2)"); + + b.Property("Remark") + .HasColumnType("nvarchar(max)"); + + b.Property("ScrapPercent") + .HasColumnType("decimal(18,2)"); + + b.Property("Version") + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("Year") + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.HasKey("Id"); + + b.HasIndex("ParentItemCode", "ChildItemCode", "Version") + .IsUnique() + .HasFilter("IsDeleted=0"); + + b.ToTable("Set_bom"); + }); + + modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Boms.BomVersion", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BranchId") + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("CustomerCode") + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("bit"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("Factory") + .HasColumnType("nvarchar(max)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("Period") + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("Remark") + .HasColumnType("nvarchar(max)"); + + b.Property("Version") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("Year") + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.HasKey("Id"); + + b.ToTable("Set_bom_version"); + }); + + modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Controls.CentralizedControl", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BranchId") + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("bit"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("Period") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("Remark") + .HasColumnType("nvarchar(max)"); + + b.Property("State") + .HasColumnType("int"); + + b.Property("Version") + .HasColumnType("nvarchar(max)"); + + b.Property("Year") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.HasKey("Id"); + + b.HasIndex("Year", "Period") + .IsUnique() + .HasFilter("IsDeleted=0"); + + b.ToTable("Set_control"); + }); + + modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Materials.Material", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BranchId") + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("CustomerPartCode") + .HasColumnType("nvarchar(max)"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("bit"); + + b.Property("EstimateType") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("EstimateTypeDesc") + .HasColumnType("nvarchar(max)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("Factory") + .HasColumnType("nvarchar(max)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("MaterialCode") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("MaterialDesc") + .HasColumnType("nvarchar(max)"); + + b.Property("Remark") + .HasColumnType("nvarchar(max)"); + + b.Property("Unit") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.HasKey("Id"); + + b.HasIndex("MaterialCode") + .IsUnique() + .HasFilter("IsDeleted=0"); + + b.ToTable("Set_material"); + }); + + modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Prices.PriceList", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BeginDate") + .HasColumnType("datetime2"); + + b.Property("BranchId") + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("CustomerCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("bit"); + + b.Property("EndDate") + .HasColumnType("datetime2"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("MaterialCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ParentId") + .HasColumnType("uniqueidentifier"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Remark") + .HasColumnType("nvarchar(max)"); + + b.Property("Type") + .HasColumnType("int"); + + b.Property("Version") + .HasColumnType("nvarchar(max)"); + + b.HasKey("Id"); + + b.ToTable("Set_PriceList"); + }); + + modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Prices.PriceListBJ", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BeginDate") + .HasColumnType("datetime2"); + + b.Property("BranchId") + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("CustomerCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("bit"); + + b.Property("EndDate") + .HasColumnType("datetime2"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("MaterialCode") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ParentId") + .HasColumnType("uniqueidentifier"); + + b.Property("Price") + .HasColumnType("decimal(18,2)"); + + b.Property("Remark") + .HasColumnType("nvarchar(max)"); + + b.Property("Type") + .HasColumnType("int"); + + b.Property("Version") + .HasColumnType("nvarchar(max)"); + + b.HasKey("Id"); + + b.ToTable("Set_PriceListBJ"); + }); + + modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Prices.PriceListVersion", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BranchId") + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("bit"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("Factory") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("Period") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Remark") + .HasColumnType("nvarchar(max)"); + + b.Property("Version") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Year") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_PriceListVersion"); + }); + + modelBuilder.Entity("Win.Sfs.SettleAccount.Entities.Prices.PriceListVersionBJ", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("BranchId") + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("bit"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("Factory") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("Period") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Remark") + .HasColumnType("nvarchar(max)"); + + b.Property("Version") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Year") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.HasKey("Id"); + + b.ToTable("Set_PriceListVersionBJ"); + }); + + modelBuilder.Entity("Win.Sfs.SettleAccount.MaterialRelationships.MaterialRelationship", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier"); + + b.Property("AppraisalCategory") + .HasColumnType("nvarchar(max)"); + + b.Property("BranchId") + .HasColumnType("uniqueidentifier"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + + b.Property("CreationTime") + .HasColumnType("datetime2") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnType("uniqueidentifier") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnType("datetime2") + .HasColumnName("DeletionTime"); + + b.Property("Enabled") + .HasColumnType("bit"); + + b.Property("ErpMaterialCode") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("ExtraProperties") + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnType("bit") + .HasDefaultValue(false) + .HasColumnName("IsDeleted"); + + b.Property("LastModificationTime") + .HasColumnType("datetime2") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnType("uniqueidentifier") + .HasColumnName("LastModifierId"); + + b.Property("MaterialDesc") + .HasColumnType("nvarchar(max)"); + + b.Property("MaterialProperty") + .IsRequired() + .HasMaxLength(36) + .HasColumnType("nvarchar(36)"); + + b.Property("Remark") + .HasColumnType("nvarchar(max)"); + + b.Property("SettleMaterialCode") + .HasColumnType("nvarchar(max)"); + + b.Property("ShipMaterailCode") + .HasColumnType("nvarchar(max)"); + + b.HasKey("Id"); + + b.HasIndex("ErpMaterialCode") + .IsUnique() + .HasFilter("IsDeleted=0"); + + b.ToTable("Set_relationship"); + }); +#pragma warning restore 612, 618 + } + } +} From e3b709c205e07d370aed4e8b610a12970e1cb9f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A6=20=E8=B5=B5?= <89237069@qq.com> Date: Mon, 10 Jul 2023 13:59:55 +0800 Subject: [PATCH 13/14] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Entities/BQ/IBBAC_BA_SERVICE.cs | 2 +- .../Entities/BQ/IBBAC_CAN_SA_SERVICE.cs | 2 +- .../Entities/BQ/IBBAC_NOT_SA_SERVICE.cs | 2 +- .../Entities/BQ/IBBAC_PD_SERVICE.cs | 2 +- .../Entities/BQ/IBBAC_SE_EDI_SERVICE.cs | 2 +- .../Entities/BQ/IHBPO_BA_SERVICE.cs | 2 +- .../Entities/BQ/IHBPO_CAN_SA_SERVICE.cs | 2 +- .../Entities/BQ/IHBPO_NOT_SA_SERVICE.cs | 2 +- .../Entities/BQ/IHBPO_PD_SERVICE.cs | 2 +- .../Entities/BQ/IHBPO_SE_EDI_SERVICE.cs | 2 +- .../Entities/BQ/IPUB_BA_SERVICE.cs | 2 +- .../Entities/BQ/IPUB_CAN_SA_SERVICE.cs | 2 +- .../Entities/BQ/IPUB_NOT_SA_SERVICE.cs | 2 +- .../Entities/BQ/IPUB_PD_SERVICE.cs | 2 +- .../SettleAccount.Application/Entities/BQ/BBAC_BA_SERVICE.cs | 2 +- .../Entities/BQ/BBAC_CAN_SA_SERVICE.cs | 2 +- .../Entities/BQ/BBAC_NOT_SA_SERVICE.cs | 2 +- .../SettleAccount.Application/Entities/BQ/BBAC_PD_SERVICE.cs | 2 +- .../Entities/BQ/BBAC_SE_EDI_Service.cs | 2 +- .../SettleAccount.Application/Entities/BQ/HBPO_BA_SERVICE.cs | 2 +- .../Entities/BQ/HBPO_CAN_SA_SERVICE.cs | 2 +- .../Entities/BQ/HBPO_NOT_SA_SERVICE.cs | 2 +- .../SettleAccount.Application/Entities/BQ/HBPO_PD_SERVICE.cs | 2 +- .../Entities/BQ/HBPO_SE_EDI_SERVICE.cs | 2 +- .../src/SettleAccount.Application/Entities/BQ/PUB_BA_SERVICE.cs | 2 +- .../SettleAccount.Application/Entities/BQ/PUB_CAN_SA_SERVICE.cs | 2 +- .../SettleAccount.Application/Entities/BQ/PUB_NOT_SA_SERVICE.cs | 2 +- .../src/SettleAccount.Application/Entities/BQ/PUB_PD_SERVICE.cs | 2 +- 28 files changed, 28 insertions(+), 28 deletions(-) diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_BA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_BA_SERVICE.cs index 66043322..de1f5cdc 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_BA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_BA_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class2 + public interface IBBAC_BA_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_CAN_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_CAN_SA_SERVICE.cs index 66043322..73f239d0 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_CAN_SA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_CAN_SA_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class2 + public interface IBBAC_CAN_SA_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_NOT_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_NOT_SA_SERVICE.cs index 66043322..328bbb2c 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_NOT_SA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_NOT_SA_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class2 + public interface IBBAC_NOT_SA_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_PD_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_PD_SERVICE.cs index 66043322..3dae6105 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_PD_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_PD_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class2 + public interface IBBAC_PD_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_SE_EDI_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_SE_EDI_SERVICE.cs index e3fc2544..1f9ab0d4 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_SE_EDI_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IBBAC_SE_EDI_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class1 + public interface IBBAC_SE_EDI_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_BA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_BA_SERVICE.cs index 66043322..67473c61 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_BA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_BA_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class2 + public interface IHBPO_BA_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_CAN_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_CAN_SA_SERVICE.cs index 66043322..48ccdb82 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_CAN_SA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_CAN_SA_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class2 + public interface IHBPO_CAN_SA_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_NOT_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_NOT_SA_SERVICE.cs index 66043322..19bf3edd 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_NOT_SA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_NOT_SA_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class2 + public interface IHBPO_NOT_SA_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_PD_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_PD_SERVICE.cs index 66043322..bb4aa48b 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_PD_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_PD_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class2 + public interface IHBPO_PD_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_SE_EDI_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_SE_EDI_SERVICE.cs index 66043322..5388cebb 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_SE_EDI_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IHBPO_SE_EDI_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class2 + public interface IHBPO_SE_EDI_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_BA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_BA_SERVICE.cs index e3fc2544..7698588f 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_BA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_BA_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class1 + public interface IPUB_BA_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_CAN_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_CAN_SA_SERVICE.cs index e3fc2544..72a72dd6 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_CAN_SA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_CAN_SA_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class1 + public interface IPUB_CAN_SA_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_NOT_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_NOT_SA_SERVICE.cs index f8bf1e14..8c8b7a8f 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_NOT_SA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_NOT_SA_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class PUB_PD_SERVICE + public interface IPUB_NOT_SA_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_PD_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_PD_SERVICE.cs index e3fc2544..10bce60c 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_PD_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/IPUB_PD_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class1 + public interface IPUB_PD_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_BA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_BA_SERVICE.cs index 66043322..95a940fc 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_BA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_BA_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class2 + public class BBAC_BA_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_CAN_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_CAN_SA_SERVICE.cs index 66043322..ea181708 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_CAN_SA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_CAN_SA_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class2 + public class BBAC_CAN_SA_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_NOT_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_NOT_SA_SERVICE.cs index 66043322..0b318fcd 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_NOT_SA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_NOT_SA_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class2 + public class BBAC_NOT_SA_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_PD_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_PD_SERVICE.cs index 66043322..c23eac77 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_PD_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_PD_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class2 + public class BBAC_PD_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_SE_EDI_Service.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_SE_EDI_Service.cs index e3fc2544..493e64f8 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_SE_EDI_Service.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/BBAC_SE_EDI_Service.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class1 + public class BBAC_SE_EDI_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_BA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_BA_SERVICE.cs index 66043322..a2c0ab9c 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_BA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_BA_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class2 + public class HBPO_BA_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_CAN_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_CAN_SA_SERVICE.cs index 66043322..da978c2e 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_CAN_SA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_CAN_SA_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class2 + public class HBPO_CAN_SA_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_NOT_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_NOT_SA_SERVICE.cs index 66043322..5c11e96b 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_NOT_SA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_NOT_SA_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class2 + public class HBPO_NOT_SA_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_PD_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_PD_SERVICE.cs index 66043322..9cf17f99 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_PD_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_PD_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class2 + public class HBPO_PD_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_SE_EDI_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_SE_EDI_SERVICE.cs index 66043322..9fbb1201 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_SE_EDI_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/HBPO_SE_EDI_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class2 + public class HBPO_SE_EDI_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_BA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_BA_SERVICE.cs index e3fc2544..ff4f41a0 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_BA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_BA_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class1 + public class PUB_BA_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_CAN_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_CAN_SA_SERVICE.cs index e3fc2544..513d81c7 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_CAN_SA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_CAN_SA_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class1 + public class PUB_CAN_SA_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_NOT_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_NOT_SA_SERVICE.cs index f8bf1e14..f5c9516a 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_NOT_SA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_NOT_SA_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class PUB_PD_SERVICE + public class PUB_NOT_SA_SERVICE { } } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_PD_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_PD_SERVICE.cs index e3fc2544..867ab18c 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_PD_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_PD_SERVICE.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; namespace Win.Sfs.SettleAccount.Entities.BQ { - internal class Class1 + public class PUB_PD_SERVICE { } } From 23e3c45e3eba3e7d0b27c09241a98596a2567806 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A7=9C=E6=97=AD=E4=B9=8B?= <12930972+jiang-xuzhi@user.noreply.gitee.com> Date: Mon, 10 Jul 2023 16:36:35 +0800 Subject: [PATCH 14/14] update --- .../Controllers/BBAC_CAN_SAController.cs | 48 +++++++++++++ .../BBAC_CAN_SA_DETAILController.cs | 41 +++++++++++ .../BBAC_NOT_SA_DETAILController.cs | 48 +++++++++++++ .../Controllers/BBAC_PD_DETAILController.cs | 47 ++++++++++++ .../Identity/Controllers/BBAC_SAController.cs | 4 +- .../Controllers/BBAC_SA_DETAILController.cs | 1 - .../Controllers/BBAC_SE_DETAILController.cs | 1 + .../Controllers/BBAC_SE_EDIController.cs | 34 +++++++++ .../Controllers/BBAC_SE_REPORTController.cs | 6 ++ .../BJ_JIT_SE_SA_REPORTController.cs | 57 +++++++++++++++ .../Controllers/BJ_PUB_CAN_SAController.cs | 25 ++----- .../BJ_PUB_CAN_SA_DETAILController.cs | 10 +-- .../BJ_PUB_NOT_SA_DETAILController.cs | 45 ++++++++++++ .../Controllers/BJ_PUB_PD_DETAILController.cs | 50 +++++++++++++ .../Controllers/BJ_PUB_SAController.cs | 60 ++++++++++++++++ .../Controllers/BJ_PUB_SA_DETAILController.cs | 46 ++++++++++++ .../Controllers/BJ_PUB_SE_DETAILController.cs | 6 ++ .../Identity/Controllers/BOMController.cs | 10 ++- .../CentralizedControlController.cs | 34 +++++++++ .../Controllers/HBPO_CAN_SAController.cs | 48 +++++++++++++ .../HBPO_CAN_SA_DETAILController.cs | 41 +++++++++++ .../HBPO_NOT_SA_DETAILController.cs | 48 +++++++++++++ .../Controllers/HBPO_PD_DETAILController.cs | 47 ++++++++++++ .../Identity/Controllers/HBPO_SAController.cs | 4 +- .../Controllers/HBPO_SA_DETAILController.cs | 1 - .../Controllers/HBPO_SE_DETAILController.cs | 3 +- .../Controllers/HBPO_SE_EDIController.cs | 34 +++++++++ .../Controllers/HBPO_SE_REPORTController.cs | 12 ++-- .../Controllers/INVOICE_GRPController.cs | 6 ++ .../IN_JIT_SE_SA_REPORTController.cs | 57 +++++++++++++++ .../Controllers/IN_PUB_CAN_SAController.cs | 25 ++----- .../IN_PUB_CAN_SA_DETAILController.cs | 11 +-- .../IN_PUB_NOT_SA_DETAILController.cs | 45 ++++++++++++ .../Controllers/IN_PUB_PD_DETAILController.cs | 50 +++++++++++++ .../Controllers/IN_PUB_SAController.cs | 60 ++++++++++++++++ .../Controllers/IN_PUB_SA_DETAILController.cs | 47 ++++++++++++ .../Controllers/IN_PUB_SE_DETAILController.cs | 17 +++-- .../JIT_JIT_SE_SA_REPORTController.cs | 57 +++++++++++++++ .../Controllers/JIT_PUB_CAN_SAController.cs | 25 ++----- .../JIT_PUB_CAN_SA_DETAILController.cs | 10 +-- .../JIT_PUB_NOT_SA_DETAILController.cs | 45 ++++++++++++ .../JIT_PUB_PD_DETAILController.cs | 50 +++++++++++++ .../Controllers/JIT_PUB_SAController.cs | 72 +++++++++++++++++++ .../JIT_PUB_SA_DETAILController.cs | 46 ++++++++++++ .../JIT_PUB_SE_DETAILController.cs | 6 ++ .../Controllers/MaterialController.cs | 10 ++- .../Second_BBAC_SE_SA_REPORTController.cs | 57 +++++++++++++++ .../Second_HBPO_SE_SA_REPORTController.cs | 57 +++++++++++++++ .../Controllers/TB_PRICE_LISTController.cs | 1 - .../Third_BBAC_SE_SA_REPORTController.cs | 57 +++++++++++++++ .../Entities/SystemManagement/BBAC_CAN_SA.cs | 3 +- .../SystemManagement/BBAC_NOT_SA_DETAIL.cs | 2 + .../SystemManagement/BBAC_PD_DETAIL.cs | 2 + .../Entities/SystemManagement/HBPO_CAN_SA.cs | 2 + .../SystemManagement/HBPO_PD_DETAIL.cs | 2 + .../SystemManagement/HBPO_SE_SA_REPORT.cs | 3 +- 56 files changed, 1515 insertions(+), 121 deletions(-) create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/BBAC_CAN_SAController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/BBAC_CAN_SA_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/BBAC_NOT_SA_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/BBAC_PD_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SE_EDIController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/BJ_JIT_SE_SA_REPORTController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_NOT_SA_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_PD_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_SAController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_SA_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/CentralizedControlController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/HBPO_CAN_SAController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/HBPO_CAN_SA_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/HBPO_NOT_SA_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/HBPO_PD_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SE_EDIController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/IN_JIT_SE_SA_REPORTController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_NOT_SA_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_PD_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_SAController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_SA_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/JIT_JIT_SE_SA_REPORTController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_NOT_SA_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_PD_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_SAController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_SA_DETAILController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/Second_BBAC_SE_SA_REPORTController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/Second_HBPO_SE_SA_REPORTController.cs create mode 100644 docs/demo/src/WTA.Application/Identity/Controllers/Third_BBAC_SE_SA_REPORTController.cs diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_CAN_SAController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_CAN_SAController.cs new file mode 100644 index 00000000..c56b538a --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_CAN_SAController.cs @@ -0,0 +1,48 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Logging; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; +using WTA.Shared.Data; + +namespace WTA.Application.Identity.Controllers; + +public class BBAC_CAN_SAController : GenericController +{ + public BBAC_CAN_SAController(ILogger logger, IRepository repository) : base(logger, repository) + { + } + + [NonAction] + public override IActionResult Create([FromBody] BBAC_CAN_SA model) + { + return base.Create(model); + } + + [NonAction] + public override IActionResult Delete([FromBody] Guid[] guids) + { + return base.Delete(guids); + } + + [NonAction] + public override IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return base.Export(model, includeAll, includeDeleted); + } + + [NonAction] + public override IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return base.Import(file, partial, replace); + } + + [Multiple, Display(Name = "生成发票数据")] + public IActionResult? GenerateInvoice() + { + return null; + } +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_CAN_SA_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_CAN_SA_DETAILController.cs new file mode 100644 index 00000000..0a8e5c0a --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_CAN_SA_DETAILController.cs @@ -0,0 +1,41 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Logging; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Shared.Application; +using WTA.Shared.Controllers; +using WTA.Shared.Data; + +namespace WTA.Application.Identity.Controllers; + +public class BBAC_CAN_SA_DETAILController : GenericController +{ + public BBAC_CAN_SA_DETAILController(ILogger logger, IRepository repository) : base(logger, repository) + { + } + + [NonAction] + public override IActionResult Create([FromBody] BBAC_CAN_SA_DETAIL model) + { + return base.Create(model); + } + + [NonAction] + public override IActionResult Delete([FromBody] Guid[] guids) + { + return base.Delete(guids); + } + + [NonAction] + public override IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return base.Export(model, includeAll, includeDeleted); + } + + [NonAction] + public override IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return base.Import(file, partial, replace); + } +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_NOT_SA_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_NOT_SA_DETAILController.cs new file mode 100644 index 00000000..b2deb79c --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_NOT_SA_DETAILController.cs @@ -0,0 +1,48 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Logging; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; +using WTA.Shared.Data; + +namespace WTA.Application.Identity.Controllers; + +public class BBAC_NOT_SA_DETAILController : GenericController +{ + public BBAC_NOT_SA_DETAILController(ILogger logger, IRepository repository) : base(logger, repository) + { + } + + [NonAction] + public override IActionResult Create([FromBody] BBAC_NOT_SA_DETAIL model) + { + return base.Create(model); + } + + [NonAction] + public override IActionResult Delete([FromBody] Guid[] guids) + { + return base.Delete(guids); + } + + [NonAction] + public override IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return base.Export(model, includeAll, includeDeleted); + } + + [NonAction] + public override IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return base.Import(file, partial, replace); + } + + [Multiple, Display(Name = "生成可结算单")] + public IActionResult? GenerateSettlementOrder() + { + return null; + } +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_PD_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_PD_DETAILController.cs new file mode 100644 index 00000000..65fdd5f7 --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_PD_DETAILController.cs @@ -0,0 +1,47 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Logging; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; +using WTA.Shared.Data; + +namespace WTA.Application.Identity.Controllers; + +public class BBAC_PD_DETAILController : GenericController +{ + public BBAC_PD_DETAILController(ILogger logger, IRepository repository) : base(logger, repository) + { + } + + [NonAction] + public override IActionResult Create([FromBody] BBAC_PD_DETAIL model) + { + return base.Create(model); + } + + [NonAction] + public override IActionResult Delete([FromBody] Guid[] guids) + { + return base.Delete(guids); + } + + [NonAction] + public override IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return base.Import(file, partial, replace); + } + + [HttpPost, Display(Name = "审核通过"), Multiple] + public IActionResult? ApprovalPassed() + { + return null; + } + + [HttpPost, Display(Name = "退回"), Multiple] + public IActionResult? Reject() + { + return null; + } +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SAController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SAController.cs index 0dfbecaa..80696e58 100644 --- a/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SAController.cs +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SAController.cs @@ -23,9 +23,9 @@ public class BBAC_SAController : GenericController /// 未确定 ///
diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SE_EDIController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SE_EDIController.cs new file mode 100644 index 00000000..3603a33f --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SE_EDIController.cs @@ -0,0 +1,34 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Logging; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Shared.Controllers; +using WTA.Shared.Data; + +namespace WTA.Application.Identity.Controllers; + +public class BBAC_SE_EDIController : GenericController +{ + public BBAC_SE_EDIController(ILogger logger, IRepository repository) : base(logger, repository) + { + } + + [NonAction] + public override IActionResult Create([FromBody] BBAC_SE_EDI model) + { + return base.Create(model); + } + + [NonAction] + public override IActionResult Delete([FromBody] Guid[] guids) + { + return base.Delete(guids); + } + + [NonAction] + public override IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return base.Import(file, partial, replace); + } +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SE_REPORTController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SE_REPORTController.cs index c74300de..587eefdb 100644 --- a/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SE_REPORTController.cs +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BBAC_SE_REPORTController.cs @@ -51,4 +51,10 @@ public class BBAC_SE_REPORTController : GenericController +{ + private readonly GenericController _genericController; + + public BJ_JIT_SE_SA_REPORTController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(0), HtmlClass("el-button--danger")] + public virtual IActionResult Delete([FromBody] Guid[] guids) + { + return this._genericController.Delete(guids); + } + + [HttpPost, Display(Name = "下载")] + public virtual IActionResult? DownloadAsync() + { + return null; + } + + [HttpPost, Display(Name = "生成对比"), Multiple] + public virtual IActionResult? Comparison() + { + return null; + } +} + +[Order(2)] +[Display(Name = "发运与结算二次比对")] +[BJDataComparisonGroup] +public class BJ_JIT_SE_SA_REPORT : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_CAN_SAController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_CAN_SAController.cs index 1dee8766..e61eabbb 100644 --- a/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_CAN_SAController.cs +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_CAN_SAController.cs @@ -1,6 +1,4 @@ using System.ComponentModel.DataAnnotations; -using Microsoft.AspNetCore.Authorization; -using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using WTA.Application.Identity.Entities.SystemManagement; using WTA.Application.Identity.Entities.SystemManagement.Group; @@ -32,29 +30,16 @@ public class BJ_PUB_CAN_SAController : BaseController, IResourceService model, bool includeAll = false, bool includeDeleted = false) - { - return this._genericController.Export(model, includeAll, includeDeleted); - } } [Hidden] -[Display(Name = "结算数据")] -[BJDataInputGroup] +[Display(Name = "可结算单明细")] +[BJSettlementInvoicingGroup] public class BJ_PUB_CAN_SA_DETAIL : IResource { } diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_NOT_SA_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_NOT_SA_DETAILController.cs new file mode 100644 index 00000000..898e126f --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_NOT_SA_DETAILController.cs @@ -0,0 +1,45 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class BJ_PUB_NOT_SA_DETAILController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public BJ_PUB_NOT_SA_DETAILController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Display(Name = "生成可结算单")] + public virtual IActionResult? GenerateSettlementOrder() + { + return null; + } +} + +[Order(2)] +[Display(Name = "不可结算单")] +[BJSettlementInvoicingGroup] +public class BJ_PUB_NOT_SA_DETAIL : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_PD_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_PD_DETAILController.cs new file mode 100644 index 00000000..a8fee760 --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_PD_DETAILController.cs @@ -0,0 +1,50 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class BJ_PUB_PD_DETAILController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public BJ_PUB_PD_DETAILController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(-1), HtmlClass("el-button--warning")] + public virtual IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return this._genericController.Export(model, includeAll, includeDeleted); + } + + [HttpPost, Multiple, Display(Name = "审核通过")] + public virtual IActionResult? ApprovalPassed() + { + return null; + } +} + +[Order(4)] +[Display(Name = "寄售库库存扣减审批")] +[BJSettlementInvoicingGroup] +public class BJ_PUB_PD_DETAIL : IResource +{ } diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_SAController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_SAController.cs new file mode 100644 index 00000000..27a5955d --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_SAController.cs @@ -0,0 +1,60 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class BJ_PUB_SAController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public BJ_PUB_SAController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(0), HtmlClass("el-button--danger")] + public virtual IActionResult Delete([FromBody] Guid[] guids) + { + return this._genericController.Delete(guids); + } + + [HttpGet, AllowAnonymous, Multiple, Order(-2), HtmlClass("el-button--primary")] + public virtual IActionResult Import() + { + return this._genericController.Import(); + } + + [Consumes("multipart/form-data")] + [HttpPost, Multiple, Order(-2), HtmlClass("el-button--primary")] + public virtual IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return this._genericController.Import(file, partial, replace); + } +} + +[Order(1)] +[BJDataInputGroup] +[Display(Name = "结算数据")] +public class BJ_PUB_SA : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_SA_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_SA_DETAILController.cs new file mode 100644 index 00000000..0ed64cc2 --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_SA_DETAILController.cs @@ -0,0 +1,46 @@ +using System.ComponentModel.DataAnnotations; +using DocumentFormat.OpenXml.Wordprocessing; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class BJ_PUB_SA_DETAILController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public BJ_PUB_SA_DETAILController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(-1), HtmlClass("el-button--warning")] + public virtual IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return this._genericController.Export(model, includeAll, includeDeleted); + } +} + +[Hidden] +[Display(Name = "结算数据明细")] +[BJDataInputGroup] +public class BJ_PUB_SA_DETAIL : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_SE_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_SE_DETAILController.cs index 99bbe143..f2db7cba 100644 --- a/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_SE_DETAILController.cs +++ b/docs/demo/src/WTA.Application/Identity/Controllers/BJ_PUB_SE_DETAILController.cs @@ -36,6 +36,12 @@ public class BJ_PUB_SE_DETAILController : BaseController, IResourceService { public BOMController(ILogger logger, IRepository repository) : base(logger, repository) { } + [NonAction] public override IActionResult Create([FromBody] BOM model) { return base.Create(model); } + [NonAction] public override IActionResult Delete([FromBody] Guid[] guids) { return base.Delete(guids); } + [NonAction] public override IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) { diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/CentralizedControlController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/CentralizedControlController.cs new file mode 100644 index 00000000..b5c43b6a --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/CentralizedControlController.cs @@ -0,0 +1,34 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Logging; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Shared.Controllers; +using WTA.Shared.Data; + +namespace WTA.Application.Identity.Controllers; + +public class CentralizedControlController : GenericController +{ + public CentralizedControlController(ILogger logger, IRepository repository) : base(logger, repository) + { + } + + [NonAction] + public override IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return base.Import(file, partial, replace); + } + + [NonAction] + public override IActionResult Create([FromBody] CentralizedControl model) + { + return base.Create(model); + } + + [NonAction] + public override IActionResult Delete([FromBody] Guid[] guids) + { + return base.Delete(guids); + } +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_CAN_SAController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_CAN_SAController.cs new file mode 100644 index 00000000..a53d68a0 --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_CAN_SAController.cs @@ -0,0 +1,48 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Logging; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; +using WTA.Shared.Data; + +namespace WTA.Application.Identity.Controllers; + +public class HBPO_CAN_SAController : GenericController +{ + public HBPO_CAN_SAController(ILogger logger, IRepository repository) : base(logger, repository) + { + } + + [NonAction] + public override IActionResult Create([FromBody] HBPO_CAN_SA model) + { + return base.Create(model); + } + + [NonAction] + public override IActionResult Delete([FromBody] Guid[] guids) + { + return base.Delete(guids); + } + + [NonAction] + public override IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return base.Export(model, includeAll, includeDeleted); + } + + [NonAction] + public override IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return base.Import(file, partial, replace); + } + + [Multiple, Display(Name = "生成发票数据")] + public IActionResult? GenerateInvoice() + { + return null; + } +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_CAN_SA_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_CAN_SA_DETAILController.cs new file mode 100644 index 00000000..a479ac4e --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_CAN_SA_DETAILController.cs @@ -0,0 +1,41 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Logging; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Shared.Application; +using WTA.Shared.Controllers; +using WTA.Shared.Data; + +namespace WTA.Application.Identity.Controllers; + +public class HBPO_CAN_SA_DETAILController : GenericController +{ + public HBPO_CAN_SA_DETAILController(ILogger logger, IRepository repository) : base(logger, repository) + { + } + + [NonAction] + public override IActionResult Create([FromBody] HBPO_CAN_SA_DETAIL model) + { + return base.Create(model); + } + + [NonAction] + public override IActionResult Delete([FromBody] Guid[] guids) + { + return base.Delete(guids); + } + + [NonAction] + public override IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return base.Export(model, includeAll, includeDeleted); + } + + [NonAction] + public override IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return base.Import(file, partial, replace); + } +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_NOT_SA_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_NOT_SA_DETAILController.cs new file mode 100644 index 00000000..45df727a --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_NOT_SA_DETAILController.cs @@ -0,0 +1,48 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Logging; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; +using WTA.Shared.Data; + +namespace WTA.Application.Identity.Controllers; + +public class HBPO_NOT_SA_DETAILController : GenericController +{ + public HBPO_NOT_SA_DETAILController(ILogger logger, IRepository repository) : base(logger, repository) + { + } + + [NonAction] + public override IActionResult Create([FromBody] HBPO_NOT_SA_DETAIL model) + { + return base.Create(model); + } + + [NonAction] + public override IActionResult Delete([FromBody] Guid[] guids) + { + return base.Delete(guids); + } + + [NonAction] + public override IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return base.Export(model, includeAll, includeDeleted); + } + + [NonAction] + public override IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return base.Import(file, partial, replace); + } + + [Multiple, Display(Name = "生成可结算单")] + public IActionResult? GenerateSettlementOrder() + { + return null; + } +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_PD_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_PD_DETAILController.cs new file mode 100644 index 00000000..39f7ca7b --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_PD_DETAILController.cs @@ -0,0 +1,47 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Logging; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; +using WTA.Shared.Data; + +namespace WTA.Application.Identity.Controllers; + +public class HBPO_PD_DETAILController : GenericController +{ + public HBPO_PD_DETAILController(ILogger logger, IRepository repository) : base(logger, repository) + { + } + + [NonAction] + public override IActionResult Create([FromBody] HBPO_PD_DETAIL model) + { + return base.Create(model); + } + + [NonAction] + public override IActionResult Delete([FromBody] Guid[] guids) + { + return base.Delete(guids); + } + + [NonAction] + public override IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return base.Import(file, partial, replace); + } + + [Display(Name = "审核通过"), Multiple, HttpPost] + public IActionResult? ApprovalPassed() + { + return null; + } + + [Display(Name = "退回"), Multiple, HttpPost] + public IActionResult? Reject() + { + return null; + } +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SAController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SAController.cs index f5fbd24d..3838df6d 100644 --- a/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SAController.cs +++ b/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SAController.cs @@ -29,9 +29,9 @@ public class HBPO_SAController : GenericController /// 未确定 /// /// - [HttpPost,Display(Name ="同步"),Multiple] + [HttpPost, Display(Name = "同步"), Multiple] public IActionResult? Synchronous() { return null; diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SE_EDIController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SE_EDIController.cs new file mode 100644 index 00000000..e47e9731 --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SE_EDIController.cs @@ -0,0 +1,34 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Logging; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Shared.Controllers; +using WTA.Shared.Data; + +namespace WTA.Application.Identity.Controllers; + +public class HBPO_SE_EDIController : GenericController +{ + public HBPO_SE_EDIController(ILogger logger, IRepository repository) : base(logger, repository) + { + } + + [NonAction] + public override IActionResult Create([FromBody] HBPO_SE_EDI model) + { + return base.Create(model); + } + + [NonAction] + public override IActionResult Delete([FromBody] Guid[] guids) + { + return base.Delete(guids); + } + + [NonAction] + public override IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return base.Import(file, partial, replace); + } +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SE_REPORTController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SE_REPORTController.cs index 2d966e0e..16b8567c 100644 --- a/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SE_REPORTController.cs +++ b/docs/demo/src/WTA.Application/Identity/Controllers/HBPO_SE_REPORTController.cs @@ -22,12 +22,6 @@ public class HBPO_SE_REPORTController : GenericController model, bool includeAll = false, bool includeDeleted = false) { @@ -51,4 +45,10 @@ public class HBPO_SE_REPORTController : GenericController +{ + private readonly GenericController _genericController; + + public IN_JIT_SE_SA_REPORTController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(0), HtmlClass("el-button--danger")] + public virtual IActionResult Delete([FromBody] Guid[] guids) + { + return this._genericController.Delete(guids); + } + + [HttpPost, Display(Name = "下载")] + public virtual IActionResult? DownloadAsync() + { + return null; + } + + [HttpPost, Display(Name = "生成对比"), Multiple] + public virtual IActionResult? Comparison() + { + return null; + } +} + +[Order(2)] +[Display(Name = "发运与结算二次比对")] +[INDataComparisonGroup] +public class IN_JIT_SE_SA_REPORT : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_CAN_SAController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_CAN_SAController.cs index a59224f2..3a095096 100644 --- a/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_CAN_SAController.cs +++ b/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_CAN_SAController.cs @@ -1,6 +1,4 @@ using System.ComponentModel.DataAnnotations; -using Microsoft.AspNetCore.Authorization; -using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using WTA.Application.Identity.Entities.SystemManagement; using WTA.Application.Identity.Entities.SystemManagement.Group; @@ -32,29 +30,16 @@ public class IN_PUB_CAN_SAController : BaseController, IResourceService model, bool includeAll = false, bool includeDeleted = false) - { - return this._genericController.Export(model, includeAll, includeDeleted); - } } + [Hidden] -[Display(Name = "结算数据")] -[INDataInputGroup] +[Display(Name = "可结算单明细")] +[INSettlementInvoicingGroup] [Order(1)] public class IN_PUB_CAN_SA_DETAIL : IResource { diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_NOT_SA_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_NOT_SA_DETAILController.cs new file mode 100644 index 00000000..d629ae4c --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_NOT_SA_DETAILController.cs @@ -0,0 +1,45 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class IN_PUB_NOT_SA_DETAILController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public IN_PUB_NOT_SA_DETAILController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Display(Name = "生成可结算单")] + public virtual IActionResult? GenerateSettlementOrder() + { + return null; + } +} + +[Order(2)] +[Display(Name = "不可结算单")] +[INSettlementInvoicingGroup] +public class IN_PUB_NOT_SA_DETAIL : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_PD_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_PD_DETAILController.cs new file mode 100644 index 00000000..79fd7143 --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_PD_DETAILController.cs @@ -0,0 +1,50 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class IN_PUB_PD_DETAILController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public IN_PUB_PD_DETAILController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(-1), HtmlClass("el-button--warning")] + public virtual IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return this._genericController.Export(model, includeAll, includeDeleted); + } + + [HttpPost, Multiple, Display(Name = "审核通过")] + public virtual IActionResult? ApprovalPassed() + { + return null; + } +} + +[Order(4)] +[Display(Name = "寄售库库存扣减审批")] +[INSettlementInvoicingGroup] +public class IN_PUB_PD_DETAIL : IResource +{ } diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_SAController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_SAController.cs new file mode 100644 index 00000000..22ca767e --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_SAController.cs @@ -0,0 +1,60 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class IN_PUB_SAController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public IN_PUB_SAController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(0), HtmlClass("el-button--danger")] + public virtual IActionResult Delete([FromBody] Guid[] guids) + { + return this._genericController.Delete(guids); + } + + [HttpGet, AllowAnonymous, Multiple, Order(-2), HtmlClass("el-button--primary")] + public virtual IActionResult Import() + { + return this._genericController.Import(); + } + + [Consumes("multipart/form-data")] + [HttpPost, Multiple, Order(-2), HtmlClass("el-button--primary")] + public virtual IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return this._genericController.Import(file, partial, replace); + } +} + +[Order(1)] +[INDataInputGroup] +[Display(Name = "结算数据")] +public class IN_PUB_SA : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_SA_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_SA_DETAILController.cs new file mode 100644 index 00000000..5c3de75d --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_SA_DETAILController.cs @@ -0,0 +1,47 @@ +using System.ComponentModel.DataAnnotations; +using DocumentFormat.OpenXml.Wordprocessing; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class IN_PUB_SA_DETAILController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public IN_PUB_SA_DETAILController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(-1), HtmlClass("el-button--warning")] + public virtual IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return this._genericController.Export(model, includeAll, includeDeleted); + } +} + +[Hidden] +[Display(Name = "可结算单明细")] +[INDataInputGroup] +[Order(1)] +public class IN_PUB_SA_DETAIL : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_SE_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_SE_DETAILController.cs index 70332d5b..579c6748 100644 --- a/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_SE_DETAILController.cs +++ b/docs/demo/src/WTA.Application/Identity/Controllers/IN_PUB_SE_DETAILController.cs @@ -1,11 +1,4 @@ -using System; -using System.Collections.Generic; using System.ComponentModel.DataAnnotations; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using DocumentFormat.OpenXml.Wordprocessing; -using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Mvc; using WTA.Application.Identity.Entities.SystemManagement; using WTA.Application.Identity.Entities.SystemManagement.Group; @@ -15,6 +8,7 @@ using WTA.Shared.Controllers; using RouteAttribute = Microsoft.AspNetCore.Mvc.RouteAttribute; namespace WTA.Application.Identity.Controllers; + [Route("api/{culture=zh}/[controller]/[action]")] public class IN_PUB_SE_DETAILController : BaseController, IResourceService { @@ -42,12 +36,17 @@ public class IN_PUB_SE_DETAILController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public JIT_JIT_SE_SA_REPORTController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(0), HtmlClass("el-button--danger")] + public virtual IActionResult Delete([FromBody] Guid[] guids) + { + return this._genericController.Delete(guids); + } + + [HttpPost, Display(Name = "下载")] + public virtual IActionResult? DownloadAsync() + { + return null; + } + + [HttpPost, Display(Name = "生成对比"), Multiple] + public virtual IActionResult? Comparison() + { + return null; + } +} + +[Order(2)] +[Display(Name = "发运与结算二次比对")] +[JITDataComparisonGroup] +public class JIT_JIT_SE_SA_REPORT : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_CAN_SAController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_CAN_SAController.cs index fc41502f..a9abe909 100644 --- a/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_CAN_SAController.cs +++ b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_CAN_SAController.cs @@ -1,6 +1,4 @@ using System.ComponentModel.DataAnnotations; -using Microsoft.AspNetCore.Authorization; -using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using WTA.Application.Identity.Entities.SystemManagement; using WTA.Application.Identity.Entities.SystemManagement.Group; @@ -44,28 +42,15 @@ public class JIT_PUB_CAN_SAController : BaseController, IResourceService model, bool includeAll = false, bool includeDeleted = false) - { - return this._genericController.Export(model, includeAll, includeDeleted); - } } [Hidden] -[Display(Name = "结算数据")] -[JITDataInputGroup] +[Display(Name = "可结算单明细")] +[JITSettlementInvoicingGroup] public class JIT_PUB_CAN_SA_DETAIL : IResource { } diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_NOT_SA_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_NOT_SA_DETAILController.cs new file mode 100644 index 00000000..740d4a1b --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_NOT_SA_DETAILController.cs @@ -0,0 +1,45 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class JIT_PUB_NOT_SA_DETAILController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public JIT_PUB_NOT_SA_DETAILController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Display(Name = "生成可结算单")] + public virtual IActionResult? GenerateSettlementOrder() + { + return null; + } +} + +[Order(2)] +[Display(Name = "不可结算单")] +[JITSettlementInvoicingGroup] +public class JIT_PUB_NOT_SA_DETAIL : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_PD_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_PD_DETAILController.cs new file mode 100644 index 00000000..067a8e07 --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_PD_DETAILController.cs @@ -0,0 +1,50 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class JIT_PUB_PD_DETAILController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public JIT_PUB_PD_DETAILController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(-1), HtmlClass("el-button--warning")] + public virtual IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return this._genericController.Export(model, includeAll, includeDeleted); + } + + [HttpPost, Multiple, Display(Name = "审核通过")] + public virtual IActionResult? ApprovalPassed() + { + return null; + } +} + +[Order(4)] +[Display(Name = "寄售库库存扣减审批")] +[JITSettlementInvoicingGroup] +public class JIT_PUB_PD_DETAIL : IResource +{ } diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_SAController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_SAController.cs new file mode 100644 index 00000000..e9d620ad --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_SAController.cs @@ -0,0 +1,72 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class JIT_PUB_SAController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public JIT_PUB_SAController(GenericController genericController) + { + this._genericController = genericController; + } + + //[NonAction] + //public override IActionResult Create([FromBody] PUB_CAN_SA model) + //{ + // return base.Create(model); + //} + + //[NonAction] + //public override IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + //{ + // return base.Export(model, includeAll, includeDeleted); + //} + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(0), HtmlClass("el-button--danger")] + public virtual IActionResult Delete([FromBody] Guid[] guids) + { + return this._genericController.Delete(guids); + } + + [HttpGet, AllowAnonymous, Multiple, Order(-2), HtmlClass("el-button--primary")] + public virtual IActionResult Import() + { + return this._genericController.Import(); + } + + [Consumes("multipart/form-data")] + [HttpPost, Multiple, Order(-2), HtmlClass("el-button--primary")] + public virtual IActionResult Import([Required] IFormFile file, bool partial = false, bool replace = false) + { + return this._genericController.Import(file, partial, replace); + } +} + +[Display(Name = "结算数据")] +[JITDataInputGroup] +[Order(1)] +public class JIT_PUB_SA : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_SA_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_SA_DETAILController.cs new file mode 100644 index 00000000..08c7bdf2 --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_SA_DETAILController.cs @@ -0,0 +1,46 @@ +using System.ComponentModel.DataAnnotations; +using DocumentFormat.OpenXml.Wordprocessing; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class JIT_PUB_SA_DETAILController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public JIT_PUB_SA_DETAILController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(-1), HtmlClass("el-button--warning")] + public virtual IActionResult Export([FromBody] PaginationModel model, bool includeAll = false, bool includeDeleted = false) + { + return this._genericController.Export(model, includeAll, includeDeleted); + } +} + +[Hidden] +[Display(Name = "结算数据明细明细")] +[JITDataInputGroup] +public class JIT_PUB_SA_DETAIL : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_SE_DETAILController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_SE_DETAILController.cs index 66c11d11..30499bdd 100644 --- a/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_SE_DETAILController.cs +++ b/docs/demo/src/WTA.Application/Identity/Controllers/JIT_PUB_SE_DETAILController.cs @@ -36,6 +36,12 @@ public class JIT_PUB_SE_DETAILController : BaseController, IResourceService { public MaterialController(ILogger logger, IRepository repository) : base(logger, repository) { } + [NonAction] public override IActionResult Create([FromBody] Material model) { return base.Create(model); } + [NonAction] public override IActionResult Delete([FromBody] Guid[] guids) { return base.Delete(guids); } + [NonAction] public override IActionResult Import([Required] IFormFile importexcelfile, bool partial = false, bool replace = false) { return base.Import(importexcelfile, partial, replace); } - } diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/Second_BBAC_SE_SA_REPORTController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/Second_BBAC_SE_SA_REPORTController.cs new file mode 100644 index 00000000..4a53fe05 --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/Second_BBAC_SE_SA_REPORTController.cs @@ -0,0 +1,57 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Attribute; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class Second_BBAC_SE_SA_REPORTController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public Second_BBAC_SE_SA_REPORTController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(0), HtmlClass("el-button--danger")] + public virtual IActionResult Delete([FromBody] Guid[] guids) + { + return this._genericController.Delete(guids); + } + + [HttpPost, Display(Name = "下载")] + public virtual IActionResult? DownloadAsync() + { + return null; + } + + [HttpPost, Display(Name = "生成对比"), Multiple] + public virtual IActionResult? Comparison() + { + return null; + } +} + +[Order(3)] +[JISBBACDataComparisonGroup] +[Display(Name = "发运与结算数据二次比对")] +public class Second_BBAC_SE_SA_REPORT : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/Second_HBPO_SE_SA_REPORTController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/Second_HBPO_SE_SA_REPORTController.cs new file mode 100644 index 00000000..09b44049 --- /dev/null +++ b/docs/demo/src/WTA.Application/Identity/Controllers/Second_HBPO_SE_SA_REPORTController.cs @@ -0,0 +1,57 @@ +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Mvc; +using WTA.Application.Identity.Entities.SystemManagement; +using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Application; +using WTA.Shared.Attributes; +using WTA.Shared.Controllers; + +namespace WTA.Application.Identity.Controllers; + +[Route("api/{culture=zh}/[controller]/[action]")] +public class Second_HBPO_SE_SA_REPORTController : BaseController, IResourceService +{ + private readonly GenericController _genericController; + + public Second_HBPO_SE_SA_REPORTController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(0), HtmlClass("el-button--danger")] + public virtual IActionResult Delete([FromBody] Guid[] guids) + { + return this._genericController.Delete(guids); + } + + [HttpPost, Display(Name = "下载")] + public virtual IActionResult? DownloadAsync() + { + return null; + } + + [HttpPost, Display(Name = "生成对比"), Multiple] + public virtual IActionResult? Comparison() + { + return null; + } +} + +[Order(3)] +[JISHBPODataComparisonGroup] +[Display(Name = "发运与结算数据二次比对")] +public class Second_HBPO_SE_SA_REPORT : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Controllers/TB_PRICE_LISTController.cs b/docs/demo/src/WTA.Application/Identity/Controllers/TB_PRICE_LISTController.cs index 529d7fc7..af4ead6d 100644 --- a/docs/demo/src/WTA.Application/Identity/Controllers/TB_PRICE_LISTController.cs +++ b/docs/demo/src/WTA.Application/Identity/Controllers/TB_PRICE_LISTController.cs @@ -17,5 +17,4 @@ public class TB_PRICE_LISTController : GenericController +{ + private readonly GenericController _genericController; + + public Third_BBAC_SE_SA_REPORTController(GenericController genericController) + { + this._genericController = genericController; + } + + [HttpGet] + public virtual IActionResult Index() + { + return this._genericController.Index(); + } + + [HttpPost, Multiple, Order(-4), HtmlClass("el-button--primary")] + public virtual IActionResult Index([FromBody] PaginationModel model) + { + return this._genericController.Index(model); + } + + [HttpPost, Multiple, Order(0), HtmlClass("el-button--danger")] + public virtual IActionResult Delete([FromBody] Guid[] guids) + { + return this._genericController.Delete(guids); + } + + [HttpPost, Display(Name = "下载")] + public virtual IActionResult? DownloadAsync() + { + return null; + } + + [HttpPost, Display(Name = "生成对比"), Multiple] + public virtual IActionResult? Comparison() + { + return null; + } +} + +[Display(Name = "买单件发运与结算数据三次比对")] +[Order(4)] +[JISBBACDataComparisonGroup] +public class Third_BBAC_SE_SA_REPORT : IResource +{ +} diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_CAN_SA.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_CAN_SA.cs index 6985bc27..30f134dc 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_CAN_SA.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_CAN_SA.cs @@ -5,7 +5,8 @@ using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; [JISBBACSettlementInvoicingGroup] -[Display(Name = "发票分组号")] +[Display(Name = "可结算单")] +[Order(1)] //BBAC可结算导入 public class BBAC_CAN_SA : BaseEntity { diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_NOT_SA_DETAIL.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_NOT_SA_DETAIL.cs index 04c9a3d4..56bfcd62 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_NOT_SA_DETAIL.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_NOT_SA_DETAIL.cs @@ -1,5 +1,6 @@ using System.ComponentModel.DataAnnotations; using WTA.Application.Identity.Entities.SystemManagement.Attribute; +using WTA.Shared.Attributes; using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; @@ -31,6 +32,7 @@ namespace WTA.Application.Identity.Entities.SystemManagement; // public string RecordCount { get; set; } = null!; //} [JISBBACSettlementInvoicingGroup] +[Order(2)] [Display(Name = "不可结明细")] //BBAC不可结算导入明细 public class BBAC_NOT_SA_DETAIL : BaseEntity diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_PD_DETAIL.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_PD_DETAIL.cs index 399d063b..2b248b96 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_PD_DETAIL.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BBAC_PD_DETAIL.cs @@ -1,10 +1,12 @@ using System.ComponentModel.DataAnnotations; using WTA.Application.Identity.Entities.SystemManagement.Attribute; +using WTA.Shared.Attributes; using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; [JISBBACSettlementInvoicingGroup] [Display(Name = "寄售库库存扣减审批")] +[Order(4)] //BBAC寄售库库存扣减审批 public class BBAC_PD_DETAIL : BaseEntity { diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_CAN_SA.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_CAN_SA.cs index 47617309..88257a77 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_CAN_SA.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_CAN_SA.cs @@ -6,6 +6,7 @@ using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; [JISHBPOSettlementInvoicingGroup] [Display(Name = "可结算单")] +[Order(1)] //HBPO可结算导入 public class HBPO_CAN_SA : BaseEntity { @@ -31,6 +32,7 @@ public class HBPO_CAN_SA : BaseEntity } [Hidden] [Display(Name = "HBPO可结算导入明细")] +[Order(2)] public class HBPO_CAN_SA_DETAIL : BaseEntity { diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_PD_DETAIL.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_PD_DETAIL.cs index 19ec6270..6c63acaa 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_PD_DETAIL.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_PD_DETAIL.cs @@ -1,10 +1,12 @@ using System.ComponentModel.DataAnnotations; using WTA.Application.Identity.Entities.SystemManagement.Group; +using WTA.Shared.Attributes; using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; [JISHBPOSettlementInvoicingGroup] [Display(Name = "寄售库库存扣减审批")] +[Order(4)] //HBPO待扣减实体 public class HBPO_PD_DETAIL : BaseEntity { diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_SA_REPORT.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_SA_REPORT.cs index d2586b15..7b42a76f 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_SA_REPORT.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/HBPO_SE_SA_REPORT.cs @@ -4,8 +4,9 @@ using WTA.Shared.Attributes; using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; -[Display(Name = "HBPO发运数据与结算数据对比实体")] [Hidden] +[Display(Name = "HBPO发运数据与结算数据对比实体")] + public class HBPO_SE_SA_REPORT : BaseEntity { [Display(Name = "LU+ASN单号")]