mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 16:03:25 +08:00
【新增】后端分发优惠券增加按用户组分发的队列功能。
This commit is contained in:
@@ -9941,6 +9941,31 @@
|
||||
团购或秒杀传递的业务序列
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:CoreCms.Net.Model.FromBody.FMCouponDistribution">
|
||||
<summary>
|
||||
优惠券分发
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:CoreCms.Net.Model.FromBody.FMCouponDistribution.id">
|
||||
<summary>
|
||||
序列
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:CoreCms.Net.Model.FromBody.FMCouponDistribution.distributionMode">
|
||||
<summary>
|
||||
分发方式
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:CoreCms.Net.Model.FromBody.FMCouponDistribution.userIdOrMobile">
|
||||
<summary>
|
||||
用户序列
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:CoreCms.Net.Model.FromBody.FMCouponDistribution.userGrade">
|
||||
<summary>
|
||||
用户组类别
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:CoreCms.Net.Model.FromBody.FMReports">
|
||||
<summary>
|
||||
后台查询报表综合提交参数
|
||||
|
||||
44
CoreCms.Net.Model/FromBody/FMPromotion.cs
Normal file
44
CoreCms.Net.Model/FromBody/FMPromotion.cs
Normal file
@@ -0,0 +1,44 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CoreCms.Net.Model.FromBody
|
||||
{
|
||||
/// <summary>
|
||||
/// 优惠券分发
|
||||
/// </summary>
|
||||
public class FMCouponDistribution
|
||||
{
|
||||
/// <summary>
|
||||
/// 序列
|
||||
/// </summary>
|
||||
[Display(Name = "序列")]
|
||||
[Required(ErrorMessage = "请提交优惠券序列")]
|
||||
public int id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 分发方式
|
||||
/// </summary>
|
||||
[Display(Name = "分发方式")]
|
||||
[Required(ErrorMessage = "请提交优惠券分发方式")]
|
||||
public int distributionMode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 用户序列
|
||||
/// </summary>
|
||||
[Display(Name = "用户序列")]
|
||||
[Required(ErrorMessage = "请提交优惠券用户序列")]
|
||||
public long userIdOrMobile { get; set; } = 0;
|
||||
|
||||
/// <summary>
|
||||
/// 用户组类别
|
||||
/// </summary>
|
||||
[Display(Name = "用户组类别")]
|
||||
[Required(ErrorMessage = "请提交优惠券用户组类别")]
|
||||
public int userGrade { get; set; } = 0;
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user