BillOrderAct.java 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. package com.fuzamei.entity;
  2. /**
  3. * @file_name: BillOrderAct
  4. * @Description:
  5. * @author: 刘林杰
  6. * @date: 五月 2018/5/10 16:47
  7. * @version:
  8. */
  9. public class BillOrderAct {
  10. private int id;
  11. private String orderId;
  12. private String operatorEnterprise;
  13. private double money;
  14. private double rate;
  15. private String ownEnterprise;
  16. private int ownCopies;
  17. private String createBy;
  18. private long createTime;
  19. private String modifyBy;
  20. private long modifyTime;
  21. private int financingMoney;
  22. private double financingRate;
  23. private double pledgeMoney;
  24. private double pledgeRate;
  25. private int status;
  26. private Long buyBackDate;
  27. private String payEnterprise;
  28. private int payEnterpriseId;
  29. private int operatorEnterpriseId;
  30. private int ownEnterpriseId;
  31. public BillOrderAct(){}
  32. public String getOrderId() {
  33. return orderId;
  34. }
  35. public int getId() {
  36. return id;
  37. }
  38. public void setId(int id) {
  39. this.id = id;
  40. }
  41. public void setOrderId(String orderId) {
  42. this.orderId = orderId;
  43. }
  44. public String getModifyBy() {
  45. return modifyBy;
  46. }
  47. public void setModifyBy(String modifyBy) {
  48. this.modifyBy = modifyBy;
  49. }
  50. public long getModifyTime() {
  51. return modifyTime;
  52. }
  53. public void setModifyTime(long modifyTime) {
  54. this.modifyTime = modifyTime;
  55. }
  56. public double getFinancingRate() {
  57. return financingRate;
  58. }
  59. public void setFinancingRate(double financingRate) {
  60. this.financingRate = financingRate;
  61. }
  62. public String getPayEnterprise() {
  63. return payEnterprise;
  64. }
  65. public void setPayEnterprise(String payEnterprise) {
  66. this.payEnterprise = payEnterprise;
  67. }
  68. public String getOperatorEnterprise() {
  69. return operatorEnterprise;
  70. }
  71. public void setOperatorEnterprise(String operatorEnterprise) {
  72. this.operatorEnterprise = operatorEnterprise;
  73. }
  74. public double getMoney() {
  75. return money;
  76. }
  77. public void setMoney(double money) {
  78. this.money = money;
  79. }
  80. public double getRate() {
  81. return rate;
  82. }
  83. public void setRate(double rate) {
  84. this.rate = rate;
  85. }
  86. public int getPayEnterpriseId() {
  87. return payEnterpriseId;
  88. }
  89. public void setPayEnterpriseId(int payEnterpriseId) {
  90. this.payEnterpriseId = payEnterpriseId;
  91. }
  92. public int getOperatorEnterpriseId() {
  93. return operatorEnterpriseId;
  94. }
  95. public void setOperatorEnterpriseId(int operatorEnterpriseId) {
  96. this.operatorEnterpriseId = operatorEnterpriseId;
  97. }
  98. public int getOwnEnterpriseId() {
  99. return ownEnterpriseId;
  100. }
  101. public void setOwnEnterpriseId(int ownEnterpriseId) {
  102. this.ownEnterpriseId = ownEnterpriseId;
  103. }
  104. public String getOwnEnterprise() {
  105. return ownEnterprise;
  106. }
  107. public void setOwnEnterprise(String ownEnterprise) {
  108. this.ownEnterprise = ownEnterprise;
  109. }
  110. public int getOwnCopies() {
  111. return ownCopies;
  112. }
  113. public void setOwnCopies(int ownCopies) {
  114. this.ownCopies = ownCopies;
  115. }
  116. public String getCreateBy() {
  117. return createBy;
  118. }
  119. public void setCreateBy(String createBy) {
  120. this.createBy = createBy;
  121. }
  122. public long getCreateTime() {
  123. return createTime;
  124. }
  125. public void setCreateTime(long createTime) {
  126. this.createTime = createTime;
  127. }
  128. public int getFinancingMoney() {
  129. return financingMoney;
  130. }
  131. public void setFinancingMoney(int financingMoney) {
  132. this.financingMoney = financingMoney;
  133. }
  134. public double getPledgeMoney() {
  135. return pledgeMoney;
  136. }
  137. public void setPledgeMoney(double pledgeMoney) {
  138. this.pledgeMoney = pledgeMoney;
  139. }
  140. public double getPledgeRate() {
  141. return pledgeRate;
  142. }
  143. public void setPledgeRate(double pledgeRate) {
  144. this.pledgeRate = pledgeRate;
  145. }
  146. public Long getBuyBackDate() {
  147. return buyBackDate;
  148. }
  149. public void setBuyBackDate(Long buyBackDate) {
  150. this.buyBackDate = buyBackDate;
  151. }
  152. public int getStatus() {
  153. return status;
  154. }
  155. public void setStatus(int status) {
  156. this.status = status;
  157. }
  158. @Override
  159. public String toString() {
  160. return "BillOrderAct{" +
  161. "orderId=" + orderId +
  162. ", operatorEnterprise='" + operatorEnterprise + '\'' +
  163. ", money=" + money +
  164. ", rate=" + rate +
  165. ", ownEnterprise='" + ownEnterprise + '\'' +
  166. ", ownCopies=" + ownCopies +
  167. ", createBy=" + createBy +
  168. ", createTime=" + createTime +
  169. ", modifyBy='" + modifyBy + '\'' +
  170. ", modifyTime=" + modifyTime +
  171. ", financingMoney=" + financingMoney +
  172. ", financingRate=" + financingRate +
  173. ", pledgeMoney=" + pledgeMoney +
  174. ", pledgeRate=" + pledgeRate +
  175. ", status=" + status +
  176. ", buyBackDate=" + buyBackDate +
  177. ", payEnterprise='" + payEnterprise + '\'' +
  178. '}';
  179. }
  180. // public static Market toMarket(BillOrderAct billOrderAct,Order order){
  181. //
  182. // }
  183. }