FinshedEnterStoreAuditDto.cs 364 B

1234567891011121314
  1. using Abp.Domain.Entities;
  2. namespace ShwasherSys.FinshedStoreInfo.Dto
  3. {
  4. public class FinshedEnterStoreAuditDto:Entity<int>
  5. {
  6. public decimal ActualPackageCount { get; set; }
  7. public decimal PackageSpecification { get; set; }
  8. public string StoreLocationNo { get; set; }
  9. public int? CreateSourceType { get; set; }
  10. }
  11. }