35 lines
991 B
C#
35 lines
991 B
C#
using System;
|
|
namespace Hg.Core.Domain.Config
|
|
{
|
|
internal class CacheKeys
|
|
{
|
|
public const string SsoOrganization = "sso_organization";
|
|
|
|
public const string CompanyVirtual = "cache_company_virtual";
|
|
|
|
public const string ParameterList = "cache_parameter_list";
|
|
|
|
public const string CsvrCallrecordCount = "csvr_callrecord_count";
|
|
|
|
public const string ProductList = "cache_szzyproduct_list";
|
|
|
|
public const string SubProductList = "cache_szzysubproduct_list";
|
|
|
|
public const string ZxdParameterList = "zxd_parameter_list";
|
|
|
|
public const string HolidayCalendar = "holiday_calendar";
|
|
|
|
public const string Department = "cache_department";
|
|
|
|
public const string DeptmentList = "deptment_list_new";
|
|
|
|
public const string ProfessionDepartment = "cache_profession_department";
|
|
|
|
public const string UserListKey = "online:user_list";
|
|
|
|
|
|
public const string CheckNoticeNo = "check_notice_no_";
|
|
}
|
|
}
|
|
|