锐腾搅拌上料功能
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.9 KiB

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Frame.Data.Entity
  6. {
  7. public class FormICSInvTransferDetailUIModel : ICSInvTransferDetail
  8. {
  9. public string ID { get; set; }
  10. public string TransferID { get; set; }
  11. public string TransferNO { get; set; }
  12. public int TransferLine { get; set; }
  13. public string ORDERNO { get; set; }
  14. public int ORDERLINE { get; set; }
  15. public string TransferSTATUS { get; set; }
  16. public string MEMO { get; set; }
  17. public string ITEMCODE { get; set; }
  18. public string MOCODE { get; set; }
  19. public decimal PLANQTY { get; set; }
  20. public decimal ACTQTY { get; set; }
  21. public string CustomerCode { get; set; }
  22. public string CUSTOMERNAME { get; set; }
  23. public string FROMStorageCode { get; set; }
  24. public string FROMStackCode { get; set; }
  25. public string TOStorageCode { get; set; }
  26. public string TOStackCode { get; set; }
  27. public string RECEIVE { get; set; }
  28. public string RECEIVELINE { get; set; }
  29. public DateTime? TransferTIME { get; set; }
  30. public string TransferUSER { get; set; }
  31. public string MUSER { get; set; }
  32. public string MUSERName { get; set; }
  33. public DateTime? MTIME { get; set; }
  34. public string WorkPoint { get; set; }
  35. public string EATTRIBUTE1 { get; set; }
  36. public FormICSStorageUIModel storage1 { get; set; }
  37. public FormICSStorageUIModel storage2 { get; set; }
  38. public FormICSInvTransferUIModel invtransfer { get; set; }
  39. public FormICSStackUIModel stack1 { get; set; }
  40. public FormICSStackUIModel stack2 { get; set; }
  41. public FormICSINVENTORYUIModel inventory { get; set; }
  42. public FormICSMOUIModel mo { get; set; }
  43. }
  44. }