1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.yiboshi.science.utils;/**
* @Auther: kylin
* @Date: 2021/9/1 11:31
* @Description:
*/
/**
* class: 系统设置主键类$
* create by: $
* description:
* create time: $
*
@param: $
*
*/
public class SystemSetKey {
//文件上传地址
public final static String SysUploadFilePath = "sys.filePath";
//图片上传地址
public final static String SysUploadPhotoPath = "sys.imgPath";
//报告正文
public final static String UserAppReportBody = "user.appReportBody";
//权限系统地址
public final static String AuthorityUrl = "sys.authorityUrl";
//短信发送地址
public final static String SMSApiUrl = "sys.SMSApiUrl";
//登录设置 1允许同时登录一个账户 2 不允许同时登录有个账户
public final static String LoginType = "login.type";
/** 项目要实现的目标 */
public final static String taskCont1 = "Task.Cont1";
/** 主要研发内容 */
public final static String taskCont2 = "Task.Cont2";
/** 主要技术及学术指标 */
public final static String taskCont3 = "Task.Cont3";
/** 人才培养 */
public final static String taskCont4 = "Task.Cont4";
/** 其他应考核的指标 */
public final static String taskCont5 = "Task.Cont5";
/** 项目阶段实施内容及目标 */
public final static String taskCont6 = "Task.Cont6";
public final static String SysProjectType = "sys.projType";
}