/***********************************************************************
* 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 CoreCmsServices
{
///
/// 倒计时时间戳
///
[Display(Name = "倒计时时间戳")]
[SugarColumn(IsIgnore = true)]
public int timestamp { get; set; } = 0;
///
/// 开启状态
///
[Display(Name = "开启状态")]
[SugarColumn(IsIgnore = true)]
public int openStatus { get; set; } = 0;
///
/// 允许购买用户等级
///
[Display(Name = "允许购买用户等级")]
[SugarColumn(IsIgnore = true)]
public List allowedMemberships { get; set; }
///
/// 核销门店
///
[Display(Name = "核销门店")]
[SugarColumn(IsIgnore = true)]
public List consumableStores { get; set; }
}
}