26 lines
755 B
C#
26 lines
755 B
C#
using System;
|
|
namespace Hg.Complaint.Domain.Config
|
|
{
|
|
internal class CacheKeys
|
|
{
|
|
public const string SsoOrganization = "cache: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 ComplaintMessageEnqueue = "enqueue:complaint_message";
|
|
|
|
public const string DeptmentGroup = "cache:deptment_group";
|
|
|
|
public const string ZxdParameterList = "cache:zxd_parameter_list";
|
|
}
|
|
}
|
|
|