zhangherong
2025-07-03 1b5a723592ea63e5eec0bdeef7855b9c40e9df71
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
package org.jeecg.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 PRODUCTION = "org_num_rule";
    /**
     * 维修部门班组编码
     */
    public static final String REPAIRDEPART = "org_repair_deport_rule";
    /**
     * 设备车间编码
     */
    public static final String WORKSHOP = "work_shop_code_rule";
    /**
     * 分类字典编码
     */
    public static final String CATEGORY = "category_code_rule";
 
}