username@email.com
4 天以前 7209a884ef32a21b418146439fb47e800982c6f0
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
using Admin.NET.Core;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FZCZTB.NET.MD
{
    /// <summary>
    /// 投诉质疑结果
    /// </summary>
    [SugarTable("FB_Neirongfabu")]
    [IncreTable]
    public partial class Neirongfabu :  basemodelNoId
    {
        /// <summary>
        /// ID,主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true)]
        public Guid Id { get; set; }
 
 
        /// <summary>
        /// 内容类型
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "内容类型")]
        public int? Leirongneixing { get; set; }
        
 
 
        /// <summary>
        /// 是否发布
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "是否发布")]
        public bool? IsFabu { get; set; }
 
        /// <summary>
        /// 是否首页显示
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "是否首页显示")]
        public bool? IsShouyexianshi { get; set; }
 
        /// <summary>
        /// 内容标题
        /// </summary>
        [SugarColumn(Length = 200, IsNullable = false, ColumnDescription = "内容标题")]
        public string NeirongTittle { get; set; }
 
        /// <summary>
        /// 封面图片
        /// </summary>
        [SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "封面图片")]
        public string Fengmiantupian { get; set; }
 
 
        /// <summary>
        /// 排序 越小越靠前
        /// </summary>
        [SugarColumn( IsNullable = true, ColumnDescription = "排序 越小越靠前")]
        public int? Sort { get; set; }
 
        /// <summary>
        /// 发布时间
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "发布时间")]
        public DateTime? FabuDate { get; set; }
 
 
        /// <summary>
        /// 内容摘要
        /// </summary>
        [SugarColumn(Length = 200, IsNullable = true, ColumnDescription = "内容摘要")]
        public string NeirongZhaiyao { get; set; }
 
        /// <summary>
        /// 内容描述
        /// </summary>
        [SugarColumn(ColumnDescription = "内容描述", ColumnDataType = StaticConfig.CodeFirst_BigString)]
        public string NeirongMiaoshu { get; set; }
    }
}