BookStoreAddsDto.cs 845 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ShwasherSys.Order.Dto.OrderBookStore
  8. {
  9. public class BookStoreAddsDto
  10. {
  11. public int OrderItemId { get; set; }
  12. public List<BookStoreAddInputDto> AddItems { get; set; }
  13. }
  14. public class BookStoreAddInputDto
  15. {
  16. public string ProductNo { get; set; }
  17. public Decimal? Quantity { get; set; }
  18. public Decimal? QuantityPerPack { get; set; }
  19. public Decimal? PackageCount { get; set; }
  20. public string ProductBatchNum { get; set; }
  21. public string StoreLocationNo { get; set; }
  22. public string CurrentProductStoreHouseNo { get; set; }
  23. public string CustomerId { get; set; }
  24. }
  25. }