package com.utils.enumeration; /** * 配置(枚举)常量类 * @author Shen * */ public class SettingsEnumConstants { /** * 客户BOM配置类型 - 匹配率编码枚举值
* 匹配率编码 * @see SettingsStateEnum */ public static final String CUSTOMER_BOM_CHECK = "customer_bom_check"; /** * 客户BOM配置类型 - 限制比例编码枚举值
* 限制比例编码 * @see SettingsStateEnum */ public static final String CUSTOMER_BOM_LIMIT = "customer_bom_limit"; /** * 客户BOM配置类型 - 匹配数量编码枚举值
* 匹配数量编码 * @see SettingsStateEnum */ public static final String CUSTOMER_BOM_NUMBER = "customer_bom_number"; /** * 客户BOM配置类型 - 排序方案限制比例编码枚举值
* 排序方案限制比例编码 * @see SettingsStateEnum */ public static final String CUSTOMER_SORT_PLAN = "customer_sort_plan"; }