mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:03:27 +08:00
完成阿里云短信功能并进行测试
This commit is contained in:
@@ -1632,6 +1632,25 @@ namespace CoreCms.Net.Configuration
|
||||
|
||||
#region 短信相关=====================================================
|
||||
|
||||
/// <summary>
|
||||
/// 短信发送平台
|
||||
/// </summary>
|
||||
public enum SmsType
|
||||
{
|
||||
/// <summary>
|
||||
/// 凯信通
|
||||
/// </summary>
|
||||
[Description("凯信通")]
|
||||
KingTto = 1,
|
||||
/// <summary>
|
||||
/// 阿里云
|
||||
/// </summary>
|
||||
[Description("阿里云")]
|
||||
AliYun = 2,
|
||||
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 短信消息分类
|
||||
/// </summary>
|
||||
@@ -3340,5 +3359,35 @@ namespace CoreCms.Net.Configuration
|
||||
|
||||
#endregion
|
||||
|
||||
#region 抽奖活动
|
||||
|
||||
/// <summary>
|
||||
/// 抽奖活动类型
|
||||
/// </summary>
|
||||
public enum LuckyType
|
||||
{
|
||||
/// <summary>
|
||||
/// 大转盘
|
||||
/// </summary>
|
||||
[Description("大转盘")]
|
||||
LuckyWheel = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 九宫格
|
||||
/// </summary>
|
||||
[Description("九宫格")]
|
||||
LuckyGrid = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 老虎机
|
||||
/// </summary>
|
||||
[Description("老虎机")]
|
||||
SlotMachine = 3
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user