All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.star.template.db.constant.ConnectionEnum Maven / Gradle / Ivy

The newest version!
package com.star.template.db.constant;

/**
 * 连接常量
 * 

* * @author starhq */ public enum ConnectionEnum { USERNAME("jdbc.username", "数据源:用户名"), PASSWORD("jdbc.password", "数据源:密码"), DIRVER("jdbc.driver", "数据源:驱动"), URL("jdbc.url", "数据源:URL"); public final String code; public final String desc; ConnectionEnum(String code, String desc) { this.code = code; this.desc = desc; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy