34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Domain.Config
|
|
{
|
|
internal static class CacheKeys
|
|
{
|
|
public const string SubComType = "sub_com_type_list";
|
|
|
|
public const string LabelName = "label_name_list";
|
|
|
|
public const string ZxdParameterList = "zxd_parameter_list";
|
|
|
|
public const string ParameterList = "parameter_list";
|
|
|
|
public const string SalesDeptList = "sales_dept_list";
|
|
|
|
public const string UserRoleLevelList = "role_level_list";
|
|
|
|
public const string UserListKey = "online_user_list";
|
|
|
|
public const string MssagesKey = "order_user_protection_mssages";
|
|
|
|
public const string StatisticsKey = "order_user_protection_statistics";
|
|
|
|
public const string UserInfo = "user_info";
|
|
public const string EidInfo = "eid_info";
|
|
public const string LineInfo = "businessLine_info";
|
|
public const string EidDeptNameInfo = "eid_deptName_info";
|
|
}
|
|
} |