/***********************************************************************
* 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 CoreCmsPromotion
{
///
/// 已领取数量
///
[Display(Name = "已领取数量")]
[SugarColumn(IsIgnore = true)]
public int getNumber { get; set; }
///
/// 条件
///
[Display(Name = "条件")]
[SugarColumn(IsIgnore = true)]
public string expression1 { get; set; }
///
/// 结果
///
[Display(Name = "结果")]
[SugarColumn(IsIgnore = true)]
public string expression2 { get; set; }
///
/// 条件
///
[Display(Name = "条件集合")]
[SugarColumn(IsIgnore = true)]
public List conditions { get; set; } = new();
///
/// 结果
///
[Display(Name = "结果集合")]
[SugarColumn(IsIgnore = true)]
public List results { get; set; } = new();
///
/// 条件
///
[Display(Name = "条件集合")]
[SugarColumn(IsIgnore = true)]
public List promotionCondition { get; set; }
///
/// 条件
///
[Display(Name = "条件集合")]
[SugarColumn(IsIgnore = true)]
public List promotionResult { get; set; }
}
}