CapitalTransferCheck.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.fuzamei.entity;
  2. import java.util.Date;
  3. //划转资金审核表
  4. public class CapitalTransferCheck {
  5. private int id;//主键id
  6. private int fund_id;//基金id
  7. private String check_department;//审核部门
  8. private String check_person;//审核人员
  9. private String check_opinin;//审核意见
  10. private long check_time;//审核时间
  11. private String check_result;//结果
  12. private int relation;
  13. public int getRelation() {
  14. return relation;
  15. }
  16. public void setRelation(int relation) {
  17. this.relation = relation;
  18. }
  19. public int getId() {
  20. return id;
  21. }
  22. public void setId(int id) {
  23. this.id = id;
  24. }
  25. public int getFund_id() {
  26. return fund_id;
  27. }
  28. public void setFund_id(int fund_id) {
  29. this.fund_id = fund_id;
  30. }
  31. public String getCheck_department() {
  32. return check_department;
  33. }
  34. public void setCheck_department(String check_department) {
  35. this.check_department = check_department;
  36. }
  37. public String getCheck_person() {
  38. return check_person;
  39. }
  40. public void setCheck_person(String check_person) {
  41. this.check_person = check_person;
  42. }
  43. public String getCheck_opinin() {
  44. return check_opinin;
  45. }
  46. public void setCheck_opinin(String check_opinin) {
  47. this.check_opinin = check_opinin;
  48. }
  49. public long getCheck_time() {
  50. return check_time;
  51. }
  52. public void setCheck_time(long check_time) {
  53. this.check_time = check_time;
  54. }
  55. public String getCheck_result() {
  56. return check_result;
  57. }
  58. public void setCheck_result(String check_result) {
  59. this.check_result = check_result;
  60. }
  61. }