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