You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
482 B
26 lines
482 B
package cc.niushuai.bastionserver.common.constant; |
|
|
|
/** |
|
* 规则值生成 编码常量类 |
|
* |
|
* @author: taoyan |
|
* @date: 2020年04月02日 |
|
*/ |
|
public class FillRuleConstant { |
|
|
|
/** |
|
* 公文发文编码 |
|
*/ |
|
public static final String DOC_SEND = "doc_send_code"; |
|
|
|
/** |
|
* 部门编码 |
|
*/ |
|
public static final String DEPART = "org_num_role"; |
|
|
|
/** |
|
* 分类字典编码 |
|
*/ |
|
public static final String CATEGORY = "category_code_rule"; |
|
|
|
}
|
|
|