地质所 沉降监测网建设项目
chenhuan
2024-06-24 9a52c9f6d5d824c367e1cc0c5d07f0cf0cb8a428
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package com.javaweb.cms.util;
 
/**
 * cms模块常量
 */
public class CmsConstants {
 
    /**
     * 使用状态:0-未使用
     */
    public static final String USE_STATE_NO = "0";
    /**
     * 使用状态:1-使用中
     */
    public static final String USE_STATE_YES = "1";
    /*专辑素材使用表的表名*/
    public static final String MATERIAL_USE_ALBUM_TABLE_NAME="cms_album_material";
    /*专辑素材使用表的列名*/
    public static final String MATERIAL_USE_ALBUM_COLUMN_NAME="album_id";
 
 
    public static final String MATERIAL_USE_AD_TABLE_NAME="cms_ad_material";
 
    public static final String MATERIAL_USE_AD_COLUMN_NAME="ad_id";
 
    /**
     * 审批状态:0-待审批
     */
    public static final Integer AUDIT_STATE_TODO = 0;
    /**
     * 审批状态:2-审批未通过
     */
    public static final Integer AUDIT_STATE_REJECT = 2;
 
    /**
     * 审批状态:1-审批通过
     */
    public static final Integer AUDIT_STATE_AGREE = 1;
 
    /**
     * 状态-正常
     */
    public static final Integer STATUS_NORMAL = 0;
 
    /**
     * 状态-停用
     */
    public static final Integer STATUS_UNNORMAL = 1;
    /**
     * 评论类型-留言
     */
    public static final String COMMENT_TYPE_LIUYAN="liuyan";
    /**
     * 博客主题
     */
    public static final String KEY_BLOG_THEME="blog.theme";
    /**
     * 登录页面
     */
    public static final String KEY_LOGIN_PAGE="login.page";
 
    /**
     * 编辑器类型
     */
    public static final String KEY_EDITOR_TYPE="editor.type";
 
    /**
     * 编辑器类型-editormd
     */
    public static final String EDITOR_TYPE_EDITORMD="editormd";
 
    /**
     * 编辑器类型-ueditor
     */
    public static final String EDITOR_TYPE_UEDITOR="ueditor";
 
    /**
     * 后台首页页面
     */
    public static final String KEY_ADMIN_INDEX="admin.index.type";
 
    /**
     * 后台首页页面-index
     */
    public static final String ADMIN_INDEX_INDEX="index";
    /**
     * 后台首页页面-index_topMenu
     */
    public static final String ADMIN_INDEX_TOP_MENU="index_topMenu";
 
    /**
     * 博客标签
     */
    public static final String KEY_TAGS_BLOG="blogTab";
 
    /**
     * 系统标签
     */
    public static final String KEY_TAGS_SYSTEM="s";
 
    /**
     * 个人标签
     */
    public static final String KEY_TAGS_PERSON="p";
 
    /**
     * 文章模板标签
     */
    public static final String KEY_TAGS_ARTICLE_TEMPLATE="articleTemplate";
}