username@email.com
2021-07-16 265f38a3f69276ae97690da64fb8e42be3a940e5
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata;
 
#nullable disable
 
namespace zhengcaioa.Models
{
    public partial class zcwebContext : DbContext
    {
        public zcwebContext()
        {
        }
 
        public zcwebContext(DbContextOptions<zcwebContext> options)
            : base(options)
        {
        }
 
        public virtual DbSet<DtArticleCategory> DtArticleCategories { get; set; }
        public virtual DbSet<DtChannelArticleNews> DtChannelArticleNews { get; set; }
 
        protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
        {
            if (!optionsBuilder.IsConfigured)
            {
#warning To protect potentially sensitive information in your connection string, you should move it out of source code. You can avoid scaffolding the connection string by using the Name= syntax to read it from configuration - see https://go.microsoft.com/fwlink/?linkid=2131148. For more guidance on storing connection strings, see http://go.microsoft.com/fwlink/?LinkId=723263.
                optionsBuilder.UseSqlServer("Data Source=.;Initial Catalog=zcweb;User ID=sa;Password=123456");
            }
        }
 
        protected override void OnModelCreating(ModelBuilder modelBuilder)
        {
            modelBuilder.HasAnnotation("Relational:Collation", "Chinese_PRC_CI_AS");
 
            modelBuilder.Entity<DtArticleCategory>(entity =>
            {
                entity.ToTable("dt_article_category");
 
                entity.HasComment("文章类别表");
 
                entity.Property(e => e.Id)
                    .HasColumnName("id")
                    .HasComment("自增ID");
 
                entity.Property(e => e.CallIndex)
                    .HasMaxLength(50)
                    .HasColumnName("call_index")
                    .HasDefaultValueSql("('')")
                    .HasComment("调用别名");
 
                entity.Property(e => e.ChannelId)
                    .HasColumnName("channel_id")
                    .HasComment("频道ID");
 
                entity.Property(e => e.ClassLayer)
                    .HasColumnName("class_layer")
                    .HasDefaultValueSql("((0))")
                    .HasComment("类别深度");
 
                entity.Property(e => e.ClassList)
                    .HasMaxLength(500)
                    .HasColumnName("class_list")
                    .HasComment("类别ID列表(逗号分隔开)");
 
                entity.Property(e => e.Content)
                    .HasColumnType("ntext")
                    .HasColumnName("content")
                    .HasComment("备注说明");
 
                entity.Property(e => e.ImgUrl)
                    .HasMaxLength(255)
                    .HasColumnName("img_url")
                    .HasDefaultValueSql("('')")
                    .HasComment("图片地址");
 
                entity.Property(e => e.IsLock)
                    .HasColumnName("is_lock")
                    .HasDefaultValueSql("((0))")
                    .HasComment("状态0正常1禁用");
 
                entity.Property(e => e.LinkUrl)
                    .HasMaxLength(255)
                    .HasColumnName("link_url")
                    .HasDefaultValueSql("('')")
                    .HasComment("URL跳转地址");
 
                entity.Property(e => e.ParentId)
                    .HasColumnName("parent_id")
                    .HasDefaultValueSql("((0))")
                    .HasComment("父类别ID");
 
                entity.Property(e => e.SeoDescription)
                    .HasMaxLength(255)
                    .HasColumnName("seo_description")
                    .HasDefaultValueSql("('')")
                    .HasComment("SEO描述");
 
                entity.Property(e => e.SeoKeywords)
                    .HasMaxLength(255)
                    .HasColumnName("seo_keywords")
                    .HasDefaultValueSql("('')")
                    .HasComment("SEO关健字");
 
                entity.Property(e => e.SeoTitle)
                    .HasMaxLength(255)
                    .HasColumnName("seo_title")
                    .HasDefaultValueSql("('')")
                    .HasComment("SEO标题");
 
                entity.Property(e => e.SiteId)
                    .HasColumnName("site_id")
                    .HasDefaultValueSql("((0))")
                    .HasComment("站点ID");
 
                entity.Property(e => e.SortId)
                    .HasColumnName("sort_id")
                    .HasDefaultValueSql("((99))")
                    .HasComment("排序数字");
 
                entity.Property(e => e.Title)
                    .HasMaxLength(100)
                    .HasColumnName("title")
                    .HasComment("类别标题");
            });
 
            modelBuilder.Entity<DtChannelArticleNews>(entity =>
            {
                entity.ToTable("dt_channel_article_news");
 
                entity.Property(e => e.Id).HasColumnName("id");
 
                entity.Property(e => e.AddTime)
                    .HasColumnType("datetime")
                    .HasColumnName("add_time")
                    .HasDefaultValueSql("(getdate())");
 
                entity.Property(e => e.Author)
                    .HasMaxLength(50)
                    .HasColumnName("author");
 
                entity.Property(e => e.CallIndex)
                    .HasMaxLength(50)
                    .HasColumnName("call_index");
 
                entity.Property(e => e.CategoryId).HasColumnName("category_id");
 
                entity.Property(e => e.ChannelId).HasColumnName("channel_id");
 
                entity.Property(e => e.Click).HasColumnName("click");
 
                entity.Property(e => e.Content)
                    .HasColumnType("ntext")
                    .HasColumnName("content");
 
                entity.Property(e => e.ImgUrl)
                    .HasMaxLength(255)
                    .HasColumnName("img_url");
 
                entity.Property(e => e.IsHot).HasColumnName("is_hot");
 
                entity.Property(e => e.IsMsg).HasColumnName("is_msg");
 
                entity.Property(e => e.IsRed).HasColumnName("is_red");
 
                entity.Property(e => e.IsSlide).HasColumnName("is_slide");
 
                entity.Property(e => e.IsSys).HasColumnName("is_sys");
 
                entity.Property(e => e.IsTop).HasColumnName("is_top");
 
                entity.Property(e => e.LikeCount).HasColumnName("like_count");
 
                entity.Property(e => e.LinkUrl)
                    .HasMaxLength(255)
                    .HasColumnName("link_url");
 
                entity.Property(e => e.SeoDescription)
                    .HasMaxLength(255)
                    .HasColumnName("seo_description");
 
                entity.Property(e => e.SeoKeywords)
                    .HasMaxLength(255)
                    .HasColumnName("seo_keywords");
 
                entity.Property(e => e.SeoTitle)
                    .HasMaxLength(255)
                    .HasColumnName("seo_title");
 
                entity.Property(e => e.SiteId).HasColumnName("site_id");
 
                entity.Property(e => e.SortId)
                    .HasColumnName("sort_id")
                    .HasDefaultValueSql("((99))");
 
                entity.Property(e => e.Source)
                    .HasMaxLength(50)
                    .HasColumnName("source");
 
                entity.Property(e => e.Status).HasColumnName("status");
 
                entity.Property(e => e.Tags)
                    .HasMaxLength(500)
                    .HasColumnName("tags");
 
                entity.Property(e => e.Title)
                    .HasMaxLength(100)
                    .HasColumnName("title");
 
                entity.Property(e => e.UpdateTime)
                    .HasColumnType("datetime")
                    .HasColumnName("update_time");
 
                entity.Property(e => e.UserName)
                    .HasMaxLength(100)
                    .HasColumnName("user_name");
 
                entity.Property(e => e.Zhaiyao)
                    .HasMaxLength(255)
                    .HasColumnName("zhaiyao");
            });
 
            OnModelCreatingPartial(modelBuilder);
        }
 
        partial void OnModelCreatingPartial(ModelBuilder modelBuilder);
    }
}