liaoxujun@qq.com
2024-04-02 d296ea260b9dceda7900a31c6d00e2337755053c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/***********************************************************************
 *            Project: baifenBinfa
 *        ProjectName: 百分兵法管理系统                               
 *                Web: http://chuanyin.com                     
 *             Author:                                        
 *              Email:                               
 *         CreateTime: 202403/02   
 *        Description: 暂无
 ***********************************************************************/
 
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using SqlSugar;
 
namespace CoreCms.Net.Model.Entities
{
    /// <summary>
    ///     优惠券表
    /// </summary>
    public partial class CoreCmsCoupon
    {
        /// <summary>
        ///     优惠券名称
        /// </summary>
        [Display(Name = "优惠券名称")]
        [SugarColumn(IsIgnore = true)]
        public string couponName { get; set; }
 
 
        /// <summary>
        ///     领取用户姓名
        /// </summary>
        [Display(Name = "领取用户姓名")]
        [SugarColumn(IsIgnore = true)]
        public string userNickName { get; set; }
 
        /// <summary>
        ///     关联优惠内容
        /// </summary>
        [Display(Name = "关联优惠内容")]
        [SugarColumn(IsIgnore = true)]
        public CoreCmsPromotion promotion { get; set; }
 
        /// <summary>
        ///     满足明细
        /// </summary>
        [Display(Name = "满足明细")]
        [SugarColumn(IsIgnore = true)]
        public List<CoreCmsPromotionCondition> conditions { get; set; }
 
 
        /// <summary>
        ///     结果列表
        /// </summary>
        [Display(Name = "结果列表")]
        [SugarColumn(IsIgnore = true)]
        public List<CoreCmsPromotionResult> results { get; set; }
    }
}