zhuo
2025-02-25 2c6f87e7a430f52f709c4686dbecc767ca377e2c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.common.constant;
 
import lombok.Data;
 
/**
 * 字典类型
 *
 * @Author zhuo
 * @Date 2025/2/25
 */
public class DictDataConstants {
 
    // 检验类型(原材料)
    public static final String CHECK_TYPE = "check_type";
 
    // 检验类型(成品)
    public static final String CHECK_TYPE1 = "check_type1";
 
    // 来样方式
    public static final String FORM_TYPE = "form_type";
 
    // 样品状态
    public static final String SAMPLE_STATUS_LIST = "sample_status_list";
}