package com.qxueyou.scc.org.model;
|
|
import java.io.Serializable;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
import javax.persistence.GeneratedValue;
|
import javax.persistence.Id;
|
import javax.persistence.NamedQuery;
|
import javax.persistence.Table;
|
|
import org.hibernate.annotations.GenericGenerator;
|
|
/**
|
* The persistent class for the org_bank_account_re database table.
|
*
|
*/
|
@Entity
|
@Table(name="org_bank_account_re")
|
@NamedQuery(name="OrgBankAccountRe.findAll", query="SELECT o FROM OrgBankAccountRe o")
|
public class OrgBankAccountRe implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Id
|
@GeneratedValue(generator = "hibernate-uuid")
|
@GenericGenerator(name = "hibernate-uuid", strategy = "uuid")
|
@Column(name="RELATION_ID", unique=true, nullable=false, length=32)
|
private String relationId;
|
|
@Column(name="BANK_ACCOUNT_ID", length=50)
|
private String bankAccountId;
|
|
@Column(name="ORGANIZATION_ID", length=32)
|
private String organizationId;
|
|
public OrgBankAccountRe() {
|
}
|
|
public String getBankAccountId() {
|
return bankAccountId;
|
}
|
|
public void setBankAccountId(String bankAccountId) {
|
this.bankAccountId = bankAccountId;
|
}
|
|
public String getRelationId() {
|
return relationId;
|
}
|
|
public void setRelationId(String relationId) {
|
this.relationId = relationId;
|
}
|
|
public String getOrganizationId() {
|
return organizationId;
|
}
|
|
public void setOrganizationId(String organizationId) {
|
this.organizationId = organizationId;
|
}
|
|
|
}
|