足力健后端,使用.netcore版本,合并1个项目使用

T_Bus_OrderDetail.cs 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. using System;
  2. namespace System.Model
  3. {
  4. /// <summary>
  5. /// 订单详情表
  6. /// </summary>
  7. [Serializable]
  8. public partial class T_Bus_OrderDetail
  9. {
  10. public T_Bus_OrderDetail()
  11. { }
  12. #region Model
  13. private string _f_id;
  14. private int _f_sort = 1;
  15. private string _f_orderid;
  16. private int _f_productid;
  17. private string _f_productname = "";
  18. private decimal _f_price;
  19. private decimal _f_dealprice;
  20. private int _f_count = 1;
  21. private decimal _f_totleprice;
  22. private DateTime _f_addtime;
  23. private int _f_adduser;
  24. private string _f_addusername;
  25. private string _f_remark = "";
  26. /// <summary>
  27. /// 订单详情Id
  28. /// </summary>
  29. public string F_Id
  30. {
  31. set { _f_id = value; }
  32. get { return _f_id; }
  33. }
  34. /// <summary>
  35. /// 排序,单个订单商品的排序
  36. /// </summary>
  37. public int F_Sort
  38. {
  39. set { _f_sort = value; }
  40. get { return _f_sort; }
  41. }
  42. /// <summary>
  43. /// 订单Id
  44. /// </summary>
  45. public string F_OrderId
  46. {
  47. set { _f_orderid = value; }
  48. get { return _f_orderid; }
  49. }
  50. /// <summary>
  51. /// 产品编号
  52. /// </summary>
  53. public int F_ProductId
  54. {
  55. set { _f_productid = value; }
  56. get { return _f_productid; }
  57. }
  58. /// <summary>
  59. /// 产品名称
  60. /// </summary>
  61. public string F_ProductName
  62. {
  63. set { _f_productname = value; }
  64. get { return _f_productname; }
  65. }
  66. /// <summary>
  67. /// 单价,优先显示可用最低价会员价
  68. /// </summary>
  69. public decimal F_Price
  70. {
  71. set { _f_price = value; }
  72. get { return _f_price; }
  73. }
  74. /// <summary>
  75. /// 成交单价(一般在会员价和特惠价中间)
  76. /// </summary>
  77. public decimal F_DealPrice
  78. {
  79. set { _f_dealprice = value; }
  80. get { return _f_dealprice; }
  81. }
  82. /// <summary>
  83. /// 数量
  84. /// </summary>
  85. public int F_Count
  86. {
  87. set { _f_count = value; }
  88. get { return _f_count; }
  89. }
  90. /// <summary>
  91. /// 小计总计
  92. /// </summary>
  93. public decimal F_TotlePrice
  94. {
  95. set { _f_totleprice = value; }
  96. get { return _f_totleprice; }
  97. }
  98. /// <summary>
  99. ///
  100. /// </summary>
  101. public DateTime F_AddTime
  102. {
  103. set { _f_addtime = value; }
  104. get { return _f_addtime; }
  105. }
  106. /// <summary>
  107. ///
  108. /// </summary>
  109. public int F_AddUser
  110. {
  111. set { _f_adduser = value; }
  112. get { return _f_adduser; }
  113. }
  114. /// <summary>
  115. /// 添加人姓名
  116. /// </summary>
  117. public string F_AddUserName
  118. {
  119. set { _f_addusername = value; }
  120. get { return _f_addusername; }
  121. }
  122. /// <summary>
  123. /// 备注
  124. /// </summary>
  125. public string F_Remark
  126. {
  127. set { _f_remark = value; }
  128. get { return _f_remark; }
  129. }
  130. #endregion Model
  131. }
  132. }