Browse Source

文件修改

dev_DY_CC
lvzb 1 year ago
parent
commit
55ac020d65
  1. 2
      be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application.Contracts/Jobs/CountJobs/DTOs/CountJobDTO.cs
  2. 1
      be/Modules/Store/src/Win_in.Sfs.Wms.Store.Event/AutoMapperProfiles/Jobs/CountJobAutoMapperProfile.cs

2
be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application.Contracts/Jobs/CountJobs/DTOs/CountJobDTO.cs

@ -57,5 +57,5 @@ public class CountJobDTO : SfsJobDTOBase<CountJobDetailDTO>
/// <summary>
/// 任务从表明细(记录每次扫得明细)
/// </summary>
public List<CountJobDependentDetailDTO> DepDetails { get; set; } = new List<CountJobDependentDetailDTO>();
public List<CountJobDependentDetailDTO> DepDetails { get; set; }
}

1
be/Modules/Store/src/Win_in.Sfs.Wms.Store.Event/AutoMapperProfiles/Jobs/CountJobAutoMapperProfile.cs

@ -99,6 +99,7 @@ public partial class StoreEventAutoMapperProfile : Profile
.Ignore(x => x.CompleteUserId)
.Ignore(x => x.CompleteUserName)
.Ignore(x => x.CompleteTime)
.Ignore(x => x.DepDetails)
;
CreateMap<CountPlanDetailDTO, CountJobDetail>()

Loading…
Cancel
Save