CapitalTransfer.java 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. package com.fuzamei.entity;
  2. //资金划转表
  3. public class CapitalTransfer {
  4. private int id;//主键id
  5. private int fund_id;//基金id
  6. private int custodian;//管理人
  7. private String fund_name;//基金名称
  8. private double account_balance;//账户余额
  9. private double sum_of_money;//划款金额
  10. private int basis_of_payment;//划款依据
  11. private String drawing_account;//划款账户
  12. private long apply_time;//申请时间
  13. private long handle_time;//处理时间
  14. private int status_id;//状态id
  15. //字段
  16. private String persont_name;//用户表 管理人写死的
  17. private String attachment_name;//附件表的 附件名称
  18. private String url; //划款依据的url
  19. public String getPersont_name() {
  20. return persont_name;
  21. }
  22. public void setPersont_name(String persont_name) {
  23. this.persont_name = persont_name;
  24. }
  25. public String getAttachment_name() {
  26. return attachment_name;
  27. }
  28. public void setAttachment_name(String attachment_name) {
  29. this.attachment_name = attachment_name;
  30. }
  31. public String getUrl() {
  32. return url;
  33. }
  34. public void setUrl(String url) {
  35. this.url = url;
  36. }
  37. public int getId() {
  38. return id;
  39. }
  40. public void setId(int id) {
  41. this.id = id;
  42. }
  43. public int getFund_id() {
  44. return fund_id;
  45. }
  46. public void setFund_id(int fund_id) {
  47. this.fund_id = fund_id;
  48. }
  49. public int getCustodian() {
  50. return custodian;
  51. }
  52. public void setCustodian(int custodian) {
  53. this.custodian = custodian;
  54. }
  55. public long getApply_time() {
  56. return apply_time;
  57. }
  58. public String getFund_name() {
  59. return fund_name;
  60. }
  61. public void setFund_name(String fund_name) {
  62. this.fund_name = fund_name;
  63. }
  64. public double getAccount_balance() {
  65. return account_balance;
  66. }
  67. public void setAccount_balance(double account_balance) {
  68. this.account_balance = account_balance;
  69. }
  70. public double getSum_of_money() {
  71. return sum_of_money;
  72. }
  73. public void setSum_of_money(double sum_of_money) {
  74. this.sum_of_money = sum_of_money;
  75. }
  76. public int getBasis_of_payment() {
  77. return basis_of_payment;
  78. }
  79. public void setBasis_of_payment(int basis_of_payment) {
  80. this.basis_of_payment = basis_of_payment;
  81. }
  82. public String getDrawing_account() {
  83. return drawing_account;
  84. }
  85. public void setDrawing_account(String drawing_account) {
  86. this.drawing_account = drawing_account;
  87. }
  88. public long getHandle_time() {
  89. return handle_time;
  90. }
  91. public void setHandle_time(long handle_time) {
  92. this.handle_time = handle_time;
  93. }
  94. public void setApply_time(long apply_time) {
  95. this.apply_time = apply_time;
  96. }
  97. public int getStatus_id() {
  98. return status_id;
  99. }
  100. public void setStatus_id(int status_id) {
  101. this.status_id = status_id;
  102. }
  103. }