ProductStockInBackRequest.cs 338 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.request.cp
  5. {
  6. public class ProductStockInBackRequest
  7. {
  8. public string HuNr { get; set; }
  9. public string StoreCode { get; set; }
  10. public string StoreName { get; set; }
  11. public string LocatCode { get; set; }
  12. }
  13. }