123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- package com.fuzamei.entity;
- //资金划转表
- public class CapitalTransfer {
- private int id;//主键id
- private int fund_id;//基金id
- private int custodian;//管理人
- private String fund_name;//基金名称
- private double account_balance;//账户余额
- private double sum_of_money;//划款金额
- private int basis_of_payment;//划款依据
- private String drawing_account;//划款账户
- private long apply_time;//申请时间
- private long handle_time;//处理时间
- private int status_id;//状态id
-
- //字段
- private String persont_name;//用户表 管理人写死的
- private String attachment_name;//附件表的 附件名称
- private String url; //划款依据的url
-
-
- public String getPersont_name() {
- return persont_name;
- }
- public void setPersont_name(String persont_name) {
- this.persont_name = persont_name;
- }
- public String getAttachment_name() {
- return attachment_name;
- }
- public void setAttachment_name(String attachment_name) {
- this.attachment_name = attachment_name;
- }
- public String getUrl() {
- return url;
- }
- public void setUrl(String url) {
- this.url = url;
- }
- public int getId() {
- return id;
- }
- public void setId(int id) {
- this.id = id;
- }
- public int getFund_id() {
- return fund_id;
- }
- public void setFund_id(int fund_id) {
- this.fund_id = fund_id;
- }
- public int getCustodian() {
- return custodian;
- }
- public void setCustodian(int custodian) {
- this.custodian = custodian;
- }
- public long getApply_time() {
- return apply_time;
- }
- public String getFund_name() {
- return fund_name;
- }
- public void setFund_name(String fund_name) {
- this.fund_name = fund_name;
- }
- public double getAccount_balance() {
- return account_balance;
- }
- public void setAccount_balance(double account_balance) {
- this.account_balance = account_balance;
- }
- public double getSum_of_money() {
- return sum_of_money;
- }
- public void setSum_of_money(double sum_of_money) {
- this.sum_of_money = sum_of_money;
- }
- public int getBasis_of_payment() {
- return basis_of_payment;
- }
- public void setBasis_of_payment(int basis_of_payment) {
- this.basis_of_payment = basis_of_payment;
- }
- public String getDrawing_account() {
- return drawing_account;
- }
- public void setDrawing_account(String drawing_account) {
- this.drawing_account = drawing_account;
- }
- public long getHandle_time() {
- return handle_time;
- }
- public void setHandle_time(long handle_time) {
- this.handle_time = handle_time;
- }
- public void setApply_time(long apply_time) {
- this.apply_time = apply_time;
- }
- public int getStatus_id() {
- return status_id;
- }
- public void setStatus_id(int status_id) {
- this.status_id = status_id;
- }
-
-
-
-
-
-
-
- }
|