NewCmFinanceCharge.java 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. package com.caimei.modules.order.entity;
  2. import com.thinkgem.jeesite.common.persistence.DataEntity;
  3. import java.util.Date;
  4. /**
  5. * 出账信息Entity
  6. *
  7. * @author LiJun
  8. * @version 2018-08-27
  9. */
  10. public class NewCmFinanceCharge extends DataEntity<NewCmFinanceCharge> {
  11. private static final long serialVersionUID = 1L;
  12. private String status; // 应付状态---状态 1待支付 2待财务确认 3已收到款 4未收到款
  13. private Integer orderId;//主订单ID
  14. private String orderSequence; //订单序列号-- 订单编号(主订单)+序列ID
  15. private String orderSubmitType; // :个人自己下单 1:企业自己下单 2:员工帮会所下单 3:协销帮会所下单 4:后台下单 5:采美豆订单
  16. private String orderType; // 订单类型 协销订单 0 普通订单 1
  17. private String orderProductIds; // 订单商品ID,多个用逗号隔开(目前只存在单个进账)
  18. private String transactionType; // 付款类型--- 102线下-建设银行7297、103线下-中信银行0897、104线下-中信银行7172、105线上-易宝支付
  19. private String receiptType; //收款方类型--0公账 1私账
  20. private String totalAmount; // 总金额/总价
  21. private String deductionAmount; // 抵扣总额
  22. private String chargeAmount; // 应收商品总额
  23. private String productReceived;//订单商品已收
  24. private String productUncollected;//订单商品未收
  25. private String chargeStatus; // 应收状态--- 1待支付 2待财务确认 3已收到款 4未收到款
  26. private String taxRateFee; // 应付税费
  27. private String cmFee; // 应付采美金额
  28. private String shopFee; // 应付供应商金额
  29. private String otherFee; // 应付第三方金额
  30. private String shopName; // 供应商名称
  31. private Date applyDate; // 申请时间
  32. private Date auditDate; // 审核时间
  33. private String startTime; // 审核开始时间
  34. private String endTime; // 审核结束时间
  35. //格外增加显示字段
  36. private String productName; //商品名
  37. private String totalShopPay; //已付供应商总和
  38. private String totalOtherPay; //已付第三方总和
  39. private String totalTaxRateFee; //已付税费总和
  40. private String searchOrderType; // 订单搜索类型 1主动下单 2协销订单 3后台订单【对应orderSubmitType--主动下单:0、1、2、5;协销订单:3;后台订单:4】
  41. private String divideRequestNo;//易宝分账请求号
  42. public String getTotalTaxRateFee() {
  43. return totalTaxRateFee;
  44. }
  45. public void setTotalTaxRateFee(String totalTaxRateFee) {
  46. this.totalTaxRateFee = totalTaxRateFee;
  47. }
  48. public String getReceiptType() {
  49. return receiptType;
  50. }
  51. public void setReceiptType(String receiptType) {
  52. this.receiptType = receiptType;
  53. }
  54. public String getStatus() {
  55. return status;
  56. }
  57. public void setStatus(String status) {
  58. this.status = status;
  59. }
  60. public Integer getOrderId() {
  61. return orderId;
  62. }
  63. public void setOrderId(Integer orderId) {
  64. this.orderId = orderId;
  65. }
  66. public String getOrderSequence() {
  67. return orderSequence;
  68. }
  69. public void setOrderSequence(String orderSequence) {
  70. this.orderSequence = orderSequence;
  71. }
  72. public String getOrderSubmitType() {
  73. return orderSubmitType;
  74. }
  75. public void setOrderSubmitType(String orderSubmitType) {
  76. this.orderSubmitType = orderSubmitType;
  77. }
  78. public String getOrderType() {
  79. return orderType;
  80. }
  81. public void setOrderType(String orderType) {
  82. this.orderType = orderType;
  83. }
  84. public String getOrderProductIds() {
  85. return orderProductIds;
  86. }
  87. public void setOrderProductIds(String orderProductIds) {
  88. this.orderProductIds = orderProductIds;
  89. }
  90. public String getTransactionType() {
  91. return transactionType;
  92. }
  93. public void setTransactionType(String transactionType) {
  94. this.transactionType = transactionType;
  95. }
  96. public String getTotalAmount() {
  97. return totalAmount;
  98. }
  99. public void setTotalAmount(String totalAmount) {
  100. this.totalAmount = totalAmount;
  101. }
  102. public String getDeductionAmount() {
  103. return deductionAmount;
  104. }
  105. public void setDeductionAmount(String deductionAmount) {
  106. this.deductionAmount = deductionAmount;
  107. }
  108. public String getChargeAmount() {
  109. return chargeAmount;
  110. }
  111. public void setChargeAmount(String chargeAmount) {
  112. this.chargeAmount = chargeAmount;
  113. }
  114. public String getChargeStatus() {
  115. return chargeStatus;
  116. }
  117. public void setChargeStatus(String chargeStatus) {
  118. this.chargeStatus = chargeStatus;
  119. }
  120. public String getTaxRateFee() {
  121. return taxRateFee;
  122. }
  123. public void setTaxRateFee(String taxRateFee) {
  124. this.taxRateFee = taxRateFee;
  125. }
  126. public String getCmFee() {
  127. return cmFee;
  128. }
  129. public void setCmFee(String cmFee) {
  130. this.cmFee = cmFee;
  131. }
  132. public String getShopFee() {
  133. return shopFee;
  134. }
  135. public void setShopFee(String shopFee) {
  136. this.shopFee = shopFee;
  137. }
  138. public String getOtherFee() {
  139. return otherFee;
  140. }
  141. public void setOtherFee(String otherFee) {
  142. this.otherFee = otherFee;
  143. }
  144. public String getShopName() {
  145. return shopName;
  146. }
  147. public void setShopName(String shopName) {
  148. this.shopName = shopName;
  149. }
  150. public Date getApplyDate() {
  151. return applyDate;
  152. }
  153. public void setApplyDate(Date applyDate) {
  154. this.applyDate = applyDate;
  155. }
  156. public Date getAuditDate() {
  157. return auditDate;
  158. }
  159. public void setAuditDate(Date auditDate) {
  160. this.auditDate = auditDate;
  161. }
  162. public String getStartTime() {
  163. return startTime;
  164. }
  165. public void setStartTime(String startTime) {
  166. this.startTime = startTime;
  167. }
  168. public String getEndTime() {
  169. return endTime;
  170. }
  171. public void setEndTime(String endTime) {
  172. this.endTime = endTime;
  173. }
  174. public String getProductName() {
  175. return productName;
  176. }
  177. public void setProductName(String productName) {
  178. this.productName = productName;
  179. }
  180. public String getTotalShopPay() {
  181. return totalShopPay;
  182. }
  183. public void setTotalShopPay(String totalShopPay) {
  184. this.totalShopPay = totalShopPay;
  185. }
  186. public String getTotalOtherPay() {
  187. return totalOtherPay;
  188. }
  189. public void setTotalOtherPay(String totalOtherPay) {
  190. this.totalOtherPay = totalOtherPay;
  191. }
  192. public String getSearchOrderType() {
  193. return searchOrderType;
  194. }
  195. public void setSearchOrderType(String searchOrderType) {
  196. this.searchOrderType = searchOrderType;
  197. }
  198. public String getProductReceived() {
  199. return productReceived;
  200. }
  201. public void setProductReceived(String productReceived) {
  202. this.productReceived = productReceived;
  203. }
  204. public String getProductUncollected() {
  205. return productUncollected;
  206. }
  207. public void setProductUncollected(String productUncollected) {
  208. this.productUncollected = productUncollected;
  209. }
  210. public String getDivideRequestNo() {
  211. return divideRequestNo;
  212. }
  213. public void setDivideRequestNo(String divideRequestNo) {
  214. this.divideRequestNo = divideRequestNo;
  215. }
  216. }