ViewOrderSend.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using Abp.Domain.Entities;
  8. namespace ShwasherSys.OrderSendInfo
  9. {
  10. [Table("N_ViewOrderSends")]
  11. public class ViewOrderSend:Entity<int>
  12. {
  13. public int OrderItemId { get; set; }
  14. public DateTime? SendDate { get; set; }
  15. public decimal SendQuantity { get; set; }
  16. public string Remark { get; set; }
  17. public string OrderSendBillNo { get; set; }
  18. public string OrderStickBillNo { get; set; }
  19. public Decimal? QuantityPerPack { get; set; }
  20. public Decimal? PackageCount { get; set; }
  21. public string ProductBatchNum { get; set; }
  22. public string UserIDLastMod { get; set; }
  23. public string OrderNo { get; set; }
  24. public string ProductNo { get; set; }
  25. public decimal Price { get; set; }
  26. public decimal TotalPrice { get; set; }
  27. public string IsReport { get; set; }
  28. public string PartNo { get; set; }
  29. public string ProductName { get; set; }
  30. public string Model { get; set; }
  31. public int? StandardId { get; set; }
  32. public string Material { get; set; }
  33. public string ProductDesc { get; set; }
  34. public string SurfaceColor { get; set; }
  35. public string Rigidity { get; set; }
  36. public string CustomerId { get; set; }
  37. public string CustomerName { get; set; }
  38. public string LinkName { get; set; }
  39. public DateTime? OrderDate { get; set; }
  40. public int? CustomerSendId { get; set; }
  41. public string StockNo { get; set; }
  42. public string OrderUnitName { get; set; }
  43. public int? SaleType { get; set; }
  44. public decimal AfterTaxPrice { get; set; }
  45. public string StatementBillNo { get; set; }
  46. public DateTime? SendActionDate { get; set; }
  47. public string StandardName { get; set; }
  48. /// <summary>
  49. /// 运费
  50. /// </summary>
  51. public decimal LogisticsFee { get; set; } = 0;
  52. /// <summary>
  53. /// 模具费
  54. /// </summary>
  55. public decimal MoldFee { get; set; } = 0;
  56. /// <summary>
  57. /// 运费
  58. /// </summary>
  59. public decimal LogisticsFeeAfterTax { get; set; } = 0;
  60. /// <summary>
  61. /// 模具费
  62. /// </summary>
  63. public decimal MoldFeeAfterTax { get; set; } = 0;
  64. /// <summary>
  65. /// 发货单明细排序
  66. /// </summary>
  67. public int SendBillSort { get; set; } = 0;
  68. /// <summary>
  69. /// 对账单明细排序
  70. /// </summary>
  71. public int StatementBillSort { get; set; } = 0;
  72. }
  73. }