You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
874 B
C#
35 lines
874 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.Module.Core.Constants
|
|
{
|
|
/// <summary>
|
|
/// SqlSugar缓存常量
|
|
/// </summary>
|
|
public class SqlSugarCacheConst
|
|
{
|
|
/// <summary>
|
|
/// SqlSugar二级缓存
|
|
/// </summary>
|
|
public const string SqlSugar = "sys_sqlSugar:";
|
|
|
|
/// <summary>
|
|
/// SqlSugar二级缓存港口信息
|
|
/// </summary>
|
|
public const string Port = "sys_sqlSugar:Port";
|
|
|
|
/// <summary>
|
|
/// SqlSugar二级缓存 往来单位信息
|
|
/// </summary>
|
|
public const string InfoClient = "sys_sqlSugar:InfoClient";
|
|
|
|
/// <summary>
|
|
/// SqlSugar二级缓存 往来单位信息
|
|
/// </summary>
|
|
public const string User = "sys_sqlSugar:User";
|
|
}
|
|
}
|