| 1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ShwasherSys.Order.Dto.OrderBookStore
- {
- public class BookStoreAddsDto
- {
- public int OrderItemId { get; set; }
-
- public List<BookStoreAddInputDto> AddItems { get; set; }
- }
- public class BookStoreAddInputDto
- {
- public string ProductNo { get; set; }
- public Decimal? Quantity { get; set; }
- public Decimal? QuantityPerPack { get; set; }
- public Decimal? PackageCount { get; set; }
- public string ProductBatchNum { get; set; }
- public string StoreLocationNo { get; set; }
- public string CurrentProductStoreHouseNo { get; set; }
- public string CustomerId { get; set; }
- }
- }
|