/*********************************************************************** * Project: CoreCms * ProjectName: 核心内容管理系统 * Web: https://www.corecms.net * Author: 大灰灰 * Email: jianweie@163.com * CreateTime: 2021/1/31 21:45:10 * Description: 暂无 ***********************************************************************/ using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using SqlSugar; namespace CoreCms.Net.Model.Entities { /// /// 优惠券表 /// public partial class CoreCmsCoupon { /// /// 优惠券名称 /// [Display(Name = "优惠券名称")] [SugarColumn(IsIgnore = true)] public string couponName { get; set; } /// /// 领取用户姓名 /// [Display(Name = "领取用户姓名")] [SugarColumn(IsIgnore = true)] public string userNickName { get; set; } /// /// 关联优惠内容 /// [Display(Name = "关联优惠内容")] [SugarColumn(IsIgnore = true)] public CoreCmsPromotion promotion { get; set; } /// /// 满足明细 /// [Display(Name = "满足明细")] [SugarColumn(IsIgnore = true)] public List conditions { get; set; } /// /// 结果列表 /// [Display(Name = "结果列表")] [SugarColumn(IsIgnore = true)] public List results { get; set; } } }