constants.java

来自「一套完整的档案管理系统」· Java 代码 · 共 36 行

JAVA
36
字号

package com.stsc.archive.jygl;


/**
 * Manifest constants for the example application.
 *
 * @author Lu Tianxiong
 * @version $Revision: 1.2 $ $Date: 2001/04/14 12:53:07 $
 */

public final class Constants{


    /**
     * The package name for this application.
     */
    public static final String Package = "com.stsc.archive.jygl";
    public static final String CURRENT_USER_KEY = "CurrentUserInfo";	//用户信息

    /**
     * The application scope attribute under which our Hashtable of
     * Users is stored.
     */
    public static final String JYCXLIST_KEY		= "jycxlist";
	
    public static final String ARCHIVE_KEY		= "archive";

    public static final String DATEFORMAT		= "yyyy-MM-dd";

	public static final String DATABASE_KEY		= "com/stsc/jdbc/access/archive";

	public static final String ROWSPERPAGE      = "rowsperpage";
 
}

⌨️ 快捷键说明

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