WYB
2021-03-22 91b8cdad021ab052e4991f3d41834a6f0ddc36b8
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
using SqlSugar;
using System;
 
namespace JiepeiWMS.Model.Models
{
    /// <summary>
    /// Tibug 博文
    /// </summary>
    public class TopicDetail : RootEntity
    {
        public TopicDetail()
        {
            this.tdUpdatetime = DateTime.Now;
        }
 
        public int TopicId { get; set; }
 
        [SugarColumn(ColumnDataType ="nvarchar",Length = 200, IsNullable = true)]
        public string tdLogo { get; set; } 
 
        [SugarColumn(ColumnDataType ="nvarchar",Length = 200, IsNullable = true)]
        public string tdName { get; set; }
 
        [SugarColumn(ColumnDataType ="nvarchar",Length = 2000 , IsNullable = true)]
        public string tdContent { get; set; }
 
        [SugarColumn(ColumnDataType ="nvarchar",Length = 2000, IsNullable = true)]
        public string tdDetail { get; set; }
 
        [SugarColumn(ColumnDataType ="nvarchar",Length = 200, IsNullable = true)]
        public string tdSectendDetail { get; set; }
 
        public bool tdIsDelete { get; set; } = false;
        public int tdRead { get; set; }
        public int tdCommend { get; set; }
        public int tdGood { get; set; }
        public DateTime tdCreatetime { get; set; }
        public DateTime tdUpdatetime { get; set; }
        public int tdTop { get; set; }
 
        [SugarColumn(ColumnDataType ="nvarchar",Length = 200, IsNullable = true)]
        public string tdAuthor { get; set; }
 
 
        [SugarColumn(IsIgnore = true)]
        public virtual Topic Topic { get; set; }
 
    }
}