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.

50 lines
1.7 KiB

3 weeks ago
  1. using Dapper.Contrib.Extensions;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading;
  7. using System.Threading.Tasks;
  8. namespace NFine.Application.Entity
  9. {
  10. /// <summary>
  11. /// 生产订单备料
  12. /// </summary>
  13. [Table("ICSMOPick")]
  14. public class ICSMOPick
  15. {
  16. /// <summary>
  17. /// 非自增主键
  18. /// </summary>
  19. [ExplicitKey]
  20. public string ID { set; get; }
  21. public string MODetailID { set; get; }
  22. public string PickID { set; get; }
  23. public string ParentPickID { set; get; }
  24. public decimal ParentQuantity { set; get; }
  25. public decimal ParentAmount { set; get; }
  26. public string Sequence { set; get; }
  27. public string InvCode { set; get; }
  28. public decimal Quantity { set; get; }
  29. public decimal Amount { set; get; }
  30. public decimal IssueQuantity { set; get; }
  31. public string WHCode { set; get; }
  32. public string SupplyType { set; get; }
  33. public string ExtensionID { set; get; }
  34. public string MUSER { set; get; }
  35. public string MUSERName { set; get; }
  36. public DateTime MTIME { set; get; }
  37. public string WorkPoint { set; get; }
  38. public string EATTRIBUTE1 { set; get; }
  39. public string EATTRIBUTE2 { set; get; }
  40. public string EATTRIBUTE3 { set; get; }
  41. public string EATTRIBUTE4 { set; get; }
  42. public string EATTRIBUTE5 { set; get; }
  43. public string EATTRIBUTE6 { set; get; }
  44. public string EATTRIBUTE7 { set; get; }
  45. public string EATTRIBUTE8 { set; get; }
  46. public string EATTRIBUTE9 { set; get; }
  47. public string EATTRIBUTE10 { set; get; }
  48. }
  49. }