package cn.iocoder.yudao.module.crm.enums; /** * CRM 字典类型的枚举类 * * @author 超级管理员 */ public interface DictTypeConstants { String CRM_CUSTOMER_INDUSTRY = "crm_customer_industry"; // CRM 客户所属行业 String CRM_CUSTOMER_LEVEL = "crm_customer_level"; // CRM 客户等级 String CRM_CUSTOMER_SOURCE = "crm_customer_source"; // CRM 客户来源 String CRM_AUDIT_STATUS = "crm_audit_status"; // CRM 审批状态 String CRM_PRODUCT_UNIT = "crm_product_unit"; // CRM 产品单位 String CRM_PRODUCT_STATUS = "crm_product_status"; // CRM 产品状态 String CRM_FOLLOW_UP_TYPE = "crm_follow_up_type"; // CRM 跟进方式 String CRM_RECEIVABLE_RETURN_TYPE = "crm_receivable_return_type"; // CRM 回款方式 String CRM_INVOICE_TYPE = "crm_invoice_type"; // CRM 发票类型 String CRM_SALES_TARGET_PERIOD_TYPE = "crm_sales_target_period_type"; // CRM 销售目标周期类型 String CRM_SALES_TARGET_DIMENSION = "crm_sales_target_dimension"; // CRM 销售目标维度 String CRM_SALES_TARGET_STATUS = "crm_sales_target_status"; // CRM 销售目标状态 }