You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.2 KiB
79 lines
2.2 KiB
|
|
namespace Znyc.Cloudcar.Admin.Commons
|
|
{
|
|
/// <summary>
|
|
/// 默认常量
|
|
/// </summary>
|
|
public static class CommonConst
|
|
{
|
|
/// <summary>
|
|
/// 薪资待遇
|
|
/// </summary>
|
|
public const long Dictionary_Welfare = 1;
|
|
|
|
/// <summary>
|
|
/// 工作经验
|
|
/// </summary>
|
|
public const long Dictionary_Experience = 2;
|
|
|
|
/// <summary>
|
|
/// 活动
|
|
/// </summary>
|
|
public const long Dictionary_Activity = 3;
|
|
|
|
/// <summary>
|
|
/// 默认图片地址
|
|
/// </summary>
|
|
public const string Default_Image_Prefix =
|
|
"https://zhongnengyunche.com/cloudcar/wx/upload/avatar/";
|
|
|
|
/// <summary>
|
|
/// 默认头像名称
|
|
/// </summary>
|
|
public const string Default_AvataUrl = "Default_AvatarUrl.png";
|
|
|
|
/// <summary>
|
|
/// 默认实名图片地址
|
|
/// </summary>
|
|
public const string Default_Identity_Prefix =
|
|
"https://zhongnengyunche.com/authentication/{0}/";
|
|
|
|
/// <summary>
|
|
/// 默认名称
|
|
/// </summary>
|
|
public const string Default_UserName = "先生";
|
|
|
|
|
|
/// <summary>
|
|
/// 默认Banner图片地址
|
|
/// </summary>
|
|
public const string Default_Banner_Prefix = "https://zhongnengyunche.com/cloudcar/wx/upload/banner/";
|
|
|
|
/// <summary>
|
|
/// 默认意见反馈图片地址
|
|
/// </summary>
|
|
public const string Default_FeedbackPic_Prefix = "https://zhongnengyunche.com/cloudcar/wx/upload/feedback/";
|
|
|
|
/// <summary>
|
|
/// 默认活动图片地址
|
|
/// </summary>
|
|
public const string Default_Activity_Prefix = "https://zhongnengyunche.com/cloudcar/wx/upload/activity/";
|
|
|
|
|
|
/// <summary>
|
|
/// 充值活动详情-名称
|
|
/// </summary>
|
|
public const string RechargeIntro_Name = "{0}云币";
|
|
|
|
|
|
/// <summary>
|
|
/// 充值活动详情-描述
|
|
/// </summary>
|
|
public const string RechargeIntro_Description = "{0}云币(可拨打{0}个电话)";
|
|
|
|
/// <summary>
|
|
/// 空字符串
|
|
/// </summary>
|
|
public const string String_Empty = " ";
|
|
}
|
|
}
|
|
|