移动系统liao
2024-08-15 f43970a061d3c90520b4e8f48caa17a204d9a085
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/***********************************************************************
 *            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
{
    /// <summary>
    ///     服务项目表
    /// </summary>
    public partial class CoreCmsServices
    {
        /// <summary>
        ///     倒计时时间戳
        /// </summary>
        [Display(Name = "倒计时时间戳")]
        [SugarColumn(IsIgnore = true)]
        public int timestamp { get; set; } = 0;
 
        /// <summary>
        ///     开启状态
        /// </summary>
        [Display(Name = "开启状态")]
        [SugarColumn(IsIgnore = true)]
        public int openStatus { get; set; } = 0;
 
        /// <summary>
        ///     允许购买用户等级
        /// </summary>
        [Display(Name = "允许购买用户等级")]
        [SugarColumn(IsIgnore = true)]
        public List<string> allowedMemberships { get; set; }
 
        /// <summary>
        ///     核销门店
        /// </summary>
        [Display(Name = "核销门店")]
        [SugarColumn(IsIgnore = true)]
        public List<string> consumableStores { get; set; }
    }
}