/*********************************************************************** * 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 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; } } }