/****************************************************************************** * Product: iDempiere ERP & CRM Smart Business Solution * * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * * with this program, if not, write to the Free Software Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * * For the text or an alternative of this public license, you may reach us * * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * * or via info@compiere.org or http://www.compiere.org/license.html * *****************************************************************************/ package org.compiere.model; import java.math.BigDecimal; import java.sql.Timestamp; import org.compiere.util.KeyNamePair; /** Generated Interface for T_BankRegister * @author iDempiere (generated) * @version Release 11 */ public interface I_T_BankRegister { /** TableName=T_BankRegister */ public static final String Table_Name = "T_BankRegister"; /** AD_Table_ID=200070 */ public static final int Table_ID = 200070; KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name); /** AccessLevel = 4 - System */ BigDecimal accessLevel = BigDecimal.valueOf(4); /** Load Meta Data */ /** Column name Account */ public static final String COLUMNNAME_Account = "Account"; /** Set Account */ public void setAccount (String Account); /** Get Account */ public String getAccount(); /** Column name AD_Client_ID */ public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID"; /** Get Tenant. * Tenant for this installation. */ public int getAD_Client_ID(); /** Column name AD_Org_ID */ public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID"; /** Set Organization. * Organizational entity within tenant */ public void setAD_Org_ID (int AD_Org_ID); /** Get Organization. * Organizational entity within tenant */ public int getAD_Org_ID(); /** Column name AD_PInstance_ID */ public static final String COLUMNNAME_AD_PInstance_ID = "AD_PInstance_ID"; /** Set Process Instance. * Instance of the process */ public void setAD_PInstance_ID (int AD_PInstance_ID); /** Get Process Instance. * Instance of the process */ public int getAD_PInstance_ID(); public org.compiere.model.I_AD_PInstance getAD_PInstance() throws RuntimeException; /** Column name AmtAcctCr */ public static final String COLUMNNAME_AmtAcctCr = "AmtAcctCr"; /** Set Accounted Credit. * Accounted Credit Amount */ public void setAmtAcctCr (BigDecimal AmtAcctCr); /** Get Accounted Credit. * Accounted Credit Amount */ public BigDecimal getAmtAcctCr(); /** Column name AmtAcctDr */ public static final String COLUMNNAME_AmtAcctDr = "AmtAcctDr"; /** Set Accounted Debit. * Accounted Debit Amount */ public void setAmtAcctDr (BigDecimal AmtAcctDr); /** Get Accounted Debit. * Accounted Debit Amount */ public BigDecimal getAmtAcctDr(); /** Column name Balance */ public static final String COLUMNNAME_Balance = "Balance"; /** Set Balance */ public void setBalance (BigDecimal Balance); /** Get Balance */ public BigDecimal getBalance(); /** Column name BankName */ public static final String COLUMNNAME_BankName = "BankName"; /** Set Bank Name */ public void setBankName (String BankName); /** Get Bank Name */ public String getBankName(); /** Column name BPartner */ public static final String COLUMNNAME_BPartner = "BPartner"; /** Set Business Partner */ public void setBPartner (String BPartner); /** Get Business Partner */ public String getBPartner(); /** Column name C_Bank_ID */ public static final String COLUMNNAME_C_Bank_ID = "C_Bank_ID"; /** Set Bank. * Bank */ public void setC_Bank_ID (int C_Bank_ID); /** Get Bank. * Bank */ public int getC_Bank_ID(); public org.compiere.model.I_C_Bank getC_Bank() throws RuntimeException; /** Column name C_BPartner_ID */ public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID"; /** Set Business Partner. * Identifies a Business Partner */ public void setC_BPartner_ID (int C_BPartner_ID); /** Get Business Partner. * Identifies a Business Partner */ public int getC_BPartner_ID(); public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException; /** Column name DateAcct */ public static final String COLUMNNAME_DateAcct = "DateAcct"; /** Set Account Date. * Accounting Date */ public void setDateAcct (Timestamp DateAcct); /** Get Account Date. * Accounting Date */ public Timestamp getDateAcct(); /** Column name DocumentNo */ public static final String COLUMNNAME_DocumentNo = "DocumentNo"; /** Set Document No. * Document sequence number of the document */ public void setDocumentNo (String DocumentNo); /** Get Document No. * Document sequence number of the document */ public String getDocumentNo(); /** Column name T_BankRegister_UU */ public static final String COLUMNNAME_T_BankRegister_UU = "T_BankRegister_UU"; /** Set T_BankRegister_UU */ public void setT_BankRegister_UU (String T_BankRegister_UU); /** Get T_BankRegister_UU */ public String getT_BankRegister_UU(); }