ViewOrderSendStickBill.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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.Invoice
  9. {
  10. [Table("vwOrderSendBill")]
  11. public class ViewOrderSendStickBill: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 string StatementBillNo { get; set; }
  20. // public Decimal? QuantityPerPack { get; set; }
  21. // public Decimal? PackageCount { get; set; }
  22. // public string ProductBatchNum { get; set; }
  23. public string UserIDLastMod { get; set; }
  24. public string OrderNo { get; set; }
  25. public string ProductNo { get; set; }
  26. public decimal Price { get; set; }
  27. public decimal totalprice { get; set; }
  28. public string IsReport { get; set; }
  29. public string PartNo { get; set; }
  30. public string ProductName { get; set; }
  31. public string Model { get; set; }
  32. public int? StandardId { get; set; }
  33. public string Material { get; set; }
  34. public string ProductDesc { get; set; }
  35. public string SurfaceColor { get; set; }
  36. public string Rigidity { get; set; }
  37. public string CustomerId { 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 string CurrencyId { get; set; }
  44. public decimal AfterTaxPrice { get; set; }
  45. /// <summary>
  46. /// 运费
  47. /// </summary>
  48. public decimal LogisticsFee { get; set; } = 0;
  49. /// <summary>
  50. /// 模具费
  51. /// </summary>
  52. public decimal MoldFee { get; set; } = 0;
  53. /// <summary>
  54. /// 运费(不含税)
  55. /// </summary>
  56. public decimal LogisticsFeeAfterTax { get; set; } = 0;
  57. /// <summary>
  58. /// 模具费(不含税)
  59. /// </summary>
  60. public decimal MoldFeeAfterTax { get; set; } = 0;
  61. public decimal AfterTaxTotalprice { get; set; }
  62. /// <summary>
  63. /// 发货单明细排序
  64. /// </summary>
  65. public int SendBillSort { get; set; } = 0;
  66. /// <summary>
  67. /// 对账单明细排序
  68. /// </summary>
  69. public int StatementBillSort { get; set; } = 0;
  70. }
  71. }