ConfirmEnterStoreDto.cs 296 B

1234567891011
  1. using Abp.Domain.Entities;
  2. namespace ShwasherSys.ProductionOrderInfo.Dto
  3. {
  4. public class ConfirmEnterStoreDto:Entity<int>
  5. {
  6. public string CurrentRmHouseId { get; set; }
  7. public decimal TotalQuantity { get; set; }
  8. public decimal LaveQuantity { get; set; }
  9. }
  10. }