1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- package com.fuzamei.entity;
- import java.util.Date;
- //划转资金审核表
- public class CapitalTransferCheck {
- private int id;//主键id
- private int fund_id;//基金id
- private String check_department;//审核部门
- private String check_person;//审核人员
- private String check_opinin;//审核意见
- private long check_time;//审核时间
- private String check_result;//结果
- private int relation;
- public int getRelation() {
- return relation;
- }
- public void setRelation(int relation) {
- this.relation = relation;
- }
- 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 String getCheck_department() {
- return check_department;
- }
- public void setCheck_department(String check_department) {
- this.check_department = check_department;
- }
- public String getCheck_person() {
- return check_person;
- }
- public void setCheck_person(String check_person) {
- this.check_person = check_person;
- }
- public String getCheck_opinin() {
- return check_opinin;
- }
- public void setCheck_opinin(String check_opinin) {
- this.check_opinin = check_opinin;
- }
- public long getCheck_time() {
- return check_time;
- }
- public void setCheck_time(long check_time) {
- this.check_time = check_time;
- }
- public String getCheck_result() {
- return check_result;
- }
- public void setCheck_result(String check_result) {
- this.check_result = check_result;
- }
-
-
-
- }
|