移动系统liao
2025-02-17 557c2711a3e103ebc3d0492344eca9730d5e92b2
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/***********************************************************************
 *            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 CoreCmsPinTuanRecord
    {
        /// <summary>
        ///     用户头像
        /// </summary>
        [Display(Name = "用户头像")]
        [SugarColumn(IsIgnore = true)]
        public string userAvatar { get; set; }
 
 
        /// <summary>
        ///     昵称
        /// </summary>
        [Display(Name = "昵称")]
        [SugarColumn(IsIgnore = true)]
        public string nickName { get; set; }
 
 
        /// <summary>
        ///     参与队员信息
        /// </summary>
        [Display(Name = "参与队员信息")]
        [SugarColumn(IsIgnore = true)]
        public List<PinTuanRecordTeam> teams { get; set; }
 
 
        /// <summary>
        ///     参与数量
        /// </summary>
        [Display(Name = "参与数量")]
        [SugarColumn(IsIgnore = true)]
        public int teamNums { get; set; }
 
 
        /// <summary>
        ///     参与人数计算
        /// </summary>
        [Display(Name = "参与人数计算")]
        [SugarColumn(IsIgnore = true)]
        public int peopleNumber { get; set; } = 0;
 
 
        /// <summary>
        ///     剩余时间
        /// </summary>
        [Display(Name = "剩余时间")]
        [SugarColumn(IsIgnore = true)]
        public int lastTime { get; set; }
 
 
        /// <summary>
        ///     剩余时间
        /// </summary>
        [Display(Name = "剩余时间")]
        [SugarColumn(IsIgnore = true)]
        public bool isOverdue { get; set; } = false;
 
 
        /// <summary>
        ///     活动名称
        /// </summary>
        [Display(Name = "活动名称")]
        [SugarColumn(IsIgnore = true)]
        public string ruleName { get; set; }
 
 
        /// <summary>
        ///     商品名称
        /// </summary>
        [Display(Name = "商品名称")]
        [SugarColumn(IsIgnore = true)]
        public string goodName { get; set; }
    }
 
 
    public class PinTuanRecordTeam
    {
        /// <summary>
        ///     用户头像
        /// </summary>
        [Display(Name = "用户头像")]
        [SugarColumn(IsIgnore = true)]
        public string userAvatar { get; set; }
 
 
        /// <summary>
        ///     昵称
        /// </summary>
        [Display(Name = "昵称")]
        [SugarColumn(IsIgnore = true)]
        public string nickName { get; set; }
 
 
        /// <summary>
        ///     记录编号
        /// </summary>
        [Display(Name = "记录编号")]
        [SugarColumn(IsIgnore = true)]
        public int recordId { get; set; } = 0;
 
        /// <summary>
        ///     拼团队伍编号
        /// </summary>
        [Display(Name = "拼团队伍编号")]
        [SugarColumn(IsIgnore = true)]
        public int teamId { get; set; } = 0;
 
        /// <summary>
        ///     用户编号
        /// </summary>
        [Display(Name = "用户编号")]
        [SugarColumn(IsIgnore = true)]
        public int userId { get; set; } = 0;
    }
}