Browse Source

2

branch_ccpg_220107
44673626 3 years ago
parent
commit
f163694a48
  1. 5
      src/Modules/SettleAccount/src/SettleAccount.Application/SettleAccount.Application.xml
  2. 27
      src/Modules/SettleAccount/src/SettleAccount.Application/SettleAccountApplicationAutoMapperProfile.cs
  3. 1
      src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs

5
src/Modules/SettleAccount/src/SettleAccount.Application/SettleAccount.Application.xml

@ -3030,11 +3030,6 @@
<param name="files">上传的文件(前端已经限制只能上传一个附件)</param>
<returns></returns>
</member>
<member name="M:Win.Sfs.SettleAccount.SettleAccountApplicationAutoMapperProfile.CreateMapHQ_Car_Platform">
<summary>
一汽轿车平台导入
</summary>
</member>
<member name="M:Win.Sfs.SettleAccount.SettleAccountApplicationAutoMapperProfile.CreateMapHQ_F_Platform">
<summary>
红旗F平台导入

27
src/Modules/SettleAccount/src/SettleAccount.Application/SettleAccountApplicationAutoMapperProfile.cs

@ -86,7 +86,6 @@ using Win.Sfs.SettleAccount.Entities.WMSSparePart;
using Win.Sfs.SettleAccount.Entities.HQ_H;
using Win.Sfs.SettleAccount.Entities.HQ_M;
using Win.Sfs.SettleAccount.Entities.HQ_F;
using Win.Sfs.SettleAccount.Entities.HQ_Car;
namespace Win.Sfs.SettleAccount
{
@ -236,37 +235,11 @@ namespace Win.Sfs.SettleAccount
CreateMapHQ_F_Platform();
CreateMapHQ_F_PlatformVersion();
//一汽轿车
CreateMapHQ_Car_Platform();
CreateMapHQ_Car_PlatformVersion();
#endregion
}
#region PG-派格映射
/// <summary>
/// 一汽轿车平台导入
/// </summary>
private void CreateMapHQ_Car_Platform()
{
CreateMap<HQ_Car_Platform, HQ_Car_PlatformDto>().ReverseMap();
CreateMap<HQ_Car_Platform, HQ_Car_PlatformRequestDto>().ReverseMap();
CreateMap<HQ_Car_Platform, HQ_Car_PlatformImportDto>().ReverseMap();
CreateMap<HQ_Car_Platform, HQ_Car_PlatformExportDto>().ReverseMap();
CreateMap<HQ_Car_Platform, HQ_Car_PlatformExportDto>().ReverseMap();
}
private void CreateMapHQ_Car_PlatformVersion()
{
CreateMap<HQ_Car_PlatformVersion, HQ_Car_PlatformVersionDto>().ReverseMap();
CreateMap<HQ_Car_PlatformVersion, HQ_Car_PlatformVersionCreateDto>();
CreateMap<HQ_Car_PlatformVersion, HQ_Car_PlatformVersionUpdateDto>();
CreateMap<HQ_Car_PlatformVersionCreateDto, HQ_Car_PlatformVersion>();
CreateMap<HQ_Car_PlatformVersionUpdateDto, HQ_Car_PlatformVersion>();
}
/// <summary>
/// 红旗F平台导入

1
src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/EntityFrameworkCore/SettleAccountDbContextModelCreatingExtensions.cs

@ -72,7 +72,6 @@ using Win.Sfs.SettleAccount.Entities.HQ_M;
using Win.Sfs.SettleAccount.Entities.BT_Car;
using Win.Sfs.SettleAccount.Entities.WMS;
using Win.Sfs.SettleAccount.Entities.HQ_F;
using Win.Sfs.SettleAccount.Entities.HQ_Car;
namespace Win.Sfs.SettleAccount
{

Loading…
Cancel
Save