ApplyStockInRequest.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Text;
  5. namespace wms.dto.request
  6. {
  7. public class ApplyStockInRequestDto
  8. {
  9. /// <summary>
  10. /// 任务号
  11. /// </summary>
  12. public int TaskNum { get; set; }
  13. /// <summary>
  14. /// 巷道号
  15. /// </summary>
  16. public int TunnelNum { get; set; }
  17. /// <summary>
  18. /// 取货地点设备编号
  19. /// </summary>
  20. [Required(ErrorMessage = "{0} 不可为空")]
  21. public string PickUpEquipmentNo { get; set; }
  22. }
  23. public class ApplyStockInRequest
  24. {
  25. public long MaterialId { get; set; }
  26. public long MaterialGroupId { get; set; }
  27. public LocationType LocationType { get; set; }
  28. public int Tunnel { get; set; }
  29. public int Size { get; set; }
  30. public string Grade { get; set; }
  31. public long BatchId { get; set; }
  32. public string MaterialState { get; set; }
  33. public long WarehouseId { get; set; }
  34. /// <summary>
  35. /// 是否移库
  36. /// </summary>
  37. public bool IsMove { get; set; } = false;
  38. public int IsAlreadyProduct { get; set; } = 0;
  39. public string ShelfCode { get; set; }
  40. public decimal Diameter { get; set; }
  41. }
  42. }