TemplatePro/BZPT.DTO/Const/CacheKeyBZPT.cs

22 lines
744 B
C#
Raw Permalink Normal View History

2025-07-17 22:41:38 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BZPT.DTO.Const
{
public class CacheKeyBZPT
{
public const string CACHE_DICTIONARY_ALL = "CACHE.DICTIONARY.ALL";
public const string CACHE_PROJECT_ALL = "CACHE.PROJECT.ALL";
public const string CACHE_USER_ALL = "CACHE.USER.ALL";
public const string CACHE_SECTION_ALL = "CACHE.SECTION.ALL";
public const string CACHE_LABORTEAM_ALL = "CACHE.LABORTEAM.ALL";
public const string CACHE_WORKERGROUP_ALL = "CACHE.WORKERGROUP.ALL";
public const string CACHE_USER_ORG = "CACHE_USER_ORG";
public const string CACHE_USER_RES = "CACHE_USER_RES";
}
}