namespace Znyc.Cloudcar.Admin.Commons { /// /// 系统 /// public class SystemConst { /// /// 当前环境 /// public const string ASPNETCORE_ENVIRONMENT = "ASPNETCORE_ENVIRONMENT"; } /// /// 积分常量 /// public class CurrencyConst { /// /// 首次登陆 /// public const int FirstLogin = 3; /// /// 邀新用户 /// public const int NewUsers = 2; /// /// 每日分享 /// public const int DailyShare = 1; /// /// 实名认证 /// public const int RealName = 1; /// /// 每日签到 /// public const int Signin = 1; /// /// 拔打求职电话 /// public const int CallApplyJobPhone = 1; /// /// 拔打招聘电话 /// public const int CallCloudcarPhone = 1; /// /// 招聘置顶 /// public const int TopCloudcar = 50; /// /// 求职置顶 /// public const int TopApplyJob = 50; /// /// 刷新招聘 /// public const int RefreshCloudcar = 5; /// /// 刷新求职 /// public const int RefreshApplyJob = 1; } /// /// 积分操作类型常量 /// public class CurrencyOperatingTypeConst { /// /// 增加 /// public const string Add = "+"; /// /// 减少 /// public const string Reduce = "-"; } }