Grp_DecreasePayments.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Entities.Groups
  7. {
  8. /// <summary>
  9. /// 团组增减款项表
  10. /// --其他款项
  11. /// </summary>
  12. [SugarTable("Grp_DecreasePayments")]
  13. public class Grp_DecreasePayments: EntityBase
  14. {
  15. /// <summary>
  16. /// 团组外键编号
  17. /// </summary>
  18. [SugarColumn(IsNullable =true,ColumnDataType ="int")]
  19. public int DiId { get; set; }
  20. /// <summary>
  21. /// 供应商地区
  22. /// 1 国内(默认) 2 国外
  23. /// </summary>
  24. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  25. public int SupplierArea { get; set; } = 1;
  26. /// <summary>
  27. /// 供应商类型
  28. /// setdata 外键Id StID = 21
  29. /// </summary>
  30. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  31. public int SupplierTypeId { get; set; }
  32. /// <summary>
  33. /// 供应商名称
  34. /// </summary>
  35. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(200)")]
  36. public string SupplierName { get; set; }
  37. /// <summary>
  38. /// 供应商联系人
  39. /// </summary>
  40. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(100)")]
  41. public string SupplierContact { get; set; }
  42. /// <summary>
  43. /// 供应商联系电话
  44. /// </summary>
  45. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  46. public string SupplierContactNumber { get; set; }
  47. /// <summary>
  48. /// 供应商社交账号
  49. /// </summary>
  50. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(100)")]
  51. public string SupplierSocialAccount { get; set; }
  52. /// <summary>
  53. /// 供应商邮箱
  54. /// </summary>
  55. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(50)")]
  56. public string SupplierEmail { get; set; }
  57. /// <summary>
  58. /// 供应商地址
  59. /// </summary>
  60. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(300)")]
  61. public string SupplierAddress { get; set; }
  62. /// <summary>
  63. /// 费用名称
  64. /// </summary>
  65. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")]
  66. public string PriceName { get; set; }
  67. /// <summary>
  68. /// 单价
  69. /// </summary>
  70. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  71. public decimal Price { get; set; }
  72. /// <summary>
  73. /// 数量
  74. /// </summary>
  75. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  76. public decimal Quantity { get; set; }
  77. /// <summary>
  78. /// 费用总计
  79. /// </summary>
  80. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  81. public decimal FeeTotal { get; set; }
  82. /// <summary>
  83. /// 费用币种
  84. /// </summary>
  85. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  86. public int Currency { get; set; }
  87. /// <summary>
  88. /// 附件地址
  89. /// </summary>
  90. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")]
  91. public string FilePath { get; set; }
  92. /// <summary>
  93. /// OTA订单号
  94. /// </summary>
  95. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
  96. public string OTAOrderNo { get; set; }
  97. /// <summary>
  98. /// 是否为选择的费用
  99. /// </summary>
  100. public int IsSelect { get; set; }
  101. }
  102. }