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.

40 lines
1.5 KiB

3 weeks ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NFine.Application.Models
  7. {
  8. public class ICSMOPickEdit: UniversalEditModel
  9. {
  10. public string ID { set; get; }
  11. public string MODetailID { set; get; }
  12. public string PickID { set; get; }
  13. public string ParentPickID { set; get; }
  14. public decimal ParentQuantity { set; get; }
  15. public decimal ParentAmount { set; get; }
  16. public string Sequence { set; get; }
  17. public string InvCode { set; get; }
  18. public decimal Quantity { set; get; }
  19. public decimal Amount { set; get; }
  20. public decimal IssueQuantity { set; get; }
  21. public string WHCode { set; get; }
  22. public string SupplyType { set; get; }
  23. public string ExtensionID { set; get; }
  24. public string MUSER { set; get; }
  25. public string MUSERName { set; get; }
  26. public DateTime MTIME { set; get; }
  27. public string WorkPoint { set; get; }
  28. public string EATTRIBUTE1 { set; get; }
  29. public string EATTRIBUTE2 { set; get; }
  30. public string EATTRIBUTE3 { set; get; }
  31. public string EATTRIBUTE4 { set; get; }
  32. public string EATTRIBUTE5 { set; get; }
  33. public string EATTRIBUTE6 { set; get; }
  34. public string EATTRIBUTE7 { set; get; }
  35. public string EATTRIBUTE8 { set; get; }
  36. public string EATTRIBUTE9 { set; get; }
  37. public string EATTRIBUTE10 { set; get; }
  38. }
  39. }