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.

44 lines
1.7 KiB

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