53 lines
1.1 KiB
Plaintext
53 lines
1.1 KiB
Plaintext
package com.bonus.core;
|
|
|
|
/**
|
|
* 送电分公司
|
|
* @author cshu
|
|
*
|
|
*/
|
|
public class BackstageApplication {
|
|
|
|
private final static String CS_LOGIN_PATH = "localhost:8080";
|
|
|
|
private final static String CS_USER_NAME = "root";
|
|
|
|
private final static String CS_PASSWORD = "bonusadmin";
|
|
|
|
private final static String CS_EP_ID = "system";
|
|
|
|
private final static String url = "http://localhost:8080/SCEquipWeb/";
|
|
|
|
private final static String imageUrlPrefix = "http://localhost:8080/SCEquipWeb/images/";
|
|
|
|
private final static String fileUrlPrefix = "http://localhost:8080/SCEquipWeb/maTypeFile/";
|
|
|
|
public static String getCsLoginPath() {
|
|
return CS_LOGIN_PATH;
|
|
}
|
|
|
|
public static String getCsUserName() {
|
|
return CS_USER_NAME;
|
|
}
|
|
|
|
public static String getCsPassword() {
|
|
return CS_PASSWORD;
|
|
}
|
|
|
|
public static String getCsEpId() {
|
|
return CS_EP_ID;
|
|
}
|
|
|
|
public static String getUrl() {
|
|
return url;
|
|
}
|
|
|
|
public static String getImageUrlPrefix(){
|
|
return imageUrlPrefix;
|
|
}
|
|
|
|
public static String getFileurlprefix() {
|
|
return fileUrlPrefix;
|
|
}
|
|
|
|
}
|