mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 16:03:25 +08:00
【新增】后端分发优惠券增加按用户组分发的队列功能。
This commit is contained in:
@@ -409,6 +409,11 @@ namespace CoreCms.Net.Configuration
|
||||
//订单支付成功后,用户升级处理
|
||||
public const string UserUpGrade = "UserUpGradeQueue";
|
||||
|
||||
/// <summary>
|
||||
/// 优惠券发放给用户组队列
|
||||
/// </summary>
|
||||
public const string CouponDistributionSubscribe = "CouponDistributionSubscribe";
|
||||
|
||||
//消息相关
|
||||
|
||||
//发送微信模板消息
|
||||
|
||||
@@ -948,6 +948,17 @@ namespace CoreCms.Net.Configuration
|
||||
invalid = 3
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 优惠券分发方式
|
||||
/// </summary>
|
||||
public enum CouponDistributionMode
|
||||
{
|
||||
[Description("个人分发")]
|
||||
Single = 1,
|
||||
[Description("用户组分发")]
|
||||
UserGroup = 2
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region payments支付=================================
|
||||
|
||||
Reference in New Issue
Block a user