/***********************************************************************
* 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
{
///
/// 优惠券表
///
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; }
}
}