1
hao
2025-05-20 8e24c6fea30d9b179375ee2893710cdec2443b13
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 com.utils.enumeration;
 
/**
 * 配置(枚举)常量类
 * @author Shen
 *
 */
public class SettingsEnumConstants {
 
    /**
     * 客户BOM配置类型 - 匹配率编码枚举值<br/>
     * 匹配率编码
     * @see SettingsStateEnum
     */
    public static final String CUSTOMER_BOM_CHECK = "customer_bom_check";
 
    /**
     * 客户BOM配置类型 - 限制比例编码枚举值<br/>
     * 限制比例编码
     * @see SettingsStateEnum
     */
    public static final String CUSTOMER_BOM_LIMIT = "customer_bom_limit";
 
    /**
     * 客户BOM配置类型 - 匹配数量编码枚举值<br/>
     * 匹配数量编码
     * @see SettingsStateEnum
     */
    public static final String CUSTOMER_BOM_NUMBER = "customer_bom_number";
 
    /**
     * 客户BOM配置类型 - 排序方案限制比例编码枚举值<br/>
     * 排序方案限制比例编码
     * @see SettingsStateEnum
     */
    public static final String CUSTOMER_SORT_PLAN = "customer_sort_plan";
}