完成阿里云短信功能并进行测试

This commit is contained in:
jianweie
2024-02-28 23:44:59 +08:00
parent 1d3df852a0
commit 36dfe3b5c4
10 changed files with 818 additions and 226 deletions

View File

@@ -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
}
}