⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 columns.java

📁 我在加拿大学习的一个比较复杂的在线银行程序.
💻 JAVA
字号:
package com.ebusiness.ebank.security;/** * <p>Title: </p> * <p>Description:  This class defines the possible database table columns on which *                  the application might have constraints on. *                  The column names are table name concatenating column name with '.'. *                  A column name might correspond to a group of database columns. *                  For example, Account.BankInfo actually includes Account table's *                  Bank_number, Transit_number and Account_Number</p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: eBusiness Inc., All right reserved</p> * @author unascribed * @version 1.0 */public final class Columns{    //columns    public static final String ACCOUNT_BANK_INFO = "Account.BankInfo";    public static final String CARDHOLDER_SALARY = "Cardholder.Salary.View";    public static final String CARDHOLDER_DOB = "Cardholder.DateOfBirth.View";    public static final String CARDHOLDER_MAIDEN_NAME = "Cardholder.MotherMaidenName.View";}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -