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.
DS7/DSWeb/TruckMng/Comm/Cookie/CookieConstant.cs

28 lines
1.4 KiB
C#

2 years ago
namespace DSWeb.TruckMng.Comm.Cookie
{
public class CookieConstant
{
public static readonly string Roles="roles";
public static readonly string UserId = "DSUSERID";//"USERID"
public static readonly string UserCode = "CODENAME";
public static readonly string UserName = "SHOWNAME";
public static readonly string OrgCode = "COMPANYCODENAME";
public static readonly string CompanyId = "COMPANYID";
public static readonly string OrgName = "COMPANYNAME";
public static readonly string LocalCurr = "LOCALCURR";
public static readonly string WorkflowMsg = "WORKFLOWMSG";
public static readonly string ISSALEWORK = "ISSALEWORK";
public static readonly string ISENABLECUSTRANGE = "ISENABLECUSTRANGE";
public static readonly string OrgYwStatus = "OrgYwStatus";
public static readonly string OrgType = "OrgType";
public static readonly string ZbOrgCode = "ZbOrgCode";
public static readonly string InOrgCode = "InOrgCode";
public static readonly string PosNo = "PosNo";
public static readonly string RunDate = "RunDate";//营业日期
public static readonly string MachineConfig = "MachineConfig";//门店机器配置情况
public static readonly string NoteCount = "NoteCount";//门店未读通知数
12 months ago
public static readonly string ISFEENAMESAME = "ISFEENAMESAME";
2 years ago
}
}