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.

55 lines
2.0 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("ICSTransfer")]
  14. public class ICSTransfer
  15. {
  16. /// <summary>
  17. /// 非自增主键
  18. /// </summary>
  19. [ExplicitKey]
  20. public string ID { get; set; }
  21. public string TransferNO { get; set; }
  22. public string Sequence { get; set; }
  23. public string FromWarehouseCode { get; set; }
  24. public string FromLocationCode { get; set; }
  25. public string ToWarehouseCode { get; set; }
  26. public string ToLocationCode { get; set; }
  27. public string Status { get; set; }
  28. public string InvCode { get; set; }
  29. public decimal Quantity { get; set; }
  30. public decimal Amount { get; set; }
  31. public decimal TransferQuantity { get; set; }
  32. public string Type { get; set; }
  33. public string Memo { get; set; }
  34. public string CreatePerson { get; set; }
  35. public DateTime CreateDateTime { get; set; }
  36. public string TransferID { get; set; }
  37. public string TransferDetailID { get; set; }
  38. public string ExtensionID { get; set; }
  39. public string MUSER { get; set; }
  40. public string MUSERName { get; set; }
  41. public DateTime MTIME { get; set; }
  42. public string WorkPoint { get; set; }
  43. public string EATTRIBUTE1 { get; set; }
  44. public string EATTRIBUTE2 { get; set; }
  45. public string EATTRIBUTE3 { get; set; }
  46. public string EATTRIBUTE4 { get; set; }
  47. public string EATTRIBUTE5 { get; set; }
  48. public string EATTRIBUTE6 { get; set; }
  49. public string EATTRIBUTE7 { get; set; }
  50. public string EATTRIBUTE8 { get; set; }
  51. public string EATTRIBUTE9 { get; set; }
  52. public string EATTRIBUTE10 { get; set; }
  53. }
  54. }