username@email.com
2022-08-27 6e2b929cf381e2320ba6e7dec56c0371124d2b51
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 System;
using System.Collections.Generic;
using System.Text;
 
namespace DTO
{
    public class DtChannelArticleNewsDTO
    {
        public int Id { get; set; }
        public int SiteId { get; set; }
        public int ChannelId { get; set; }
        public int CategoryId { get; set; }
        public string CallIndex { get; set; }
        public string Title { get; set; }
        public string LinkUrl { get; set; }
        public string ImgUrl { get; set; }
        public string SeoTitle { get; set; }
        public string SeoKeywords { get; set; }
        public string SeoDescription { get; set; }
        public string Tags { get; set; }
        public string Zhaiyao { get; set; }
        public string Content { get; set; }
        public int SortId { get; set; }
        public int Click { get; set; }
        public int Status { get; set; }
        public int IsMsg { get; set; }
        public int IsTop { get; set; }
        public int IsRed { get; set; }
        public int IsHot { get; set; }
        public int IsSlide { get; set; }
        public int IsSys { get; set; }
        public string UserName { get; set; }
        public int LikeCount { get; set; }
        public DateTime AddTime { get; set; }
        public DateTime? UpdateTime { get; set; }
        public string Source { get; set; }
        public string Author { get; set; }
    }
 
 
    public class DtChannelArticleNewsDTOSearch : SearchEntity
    {
        public string UserName { get; set; }
        public DateTime? AddTime { get; set; }
 
        public DateTime? EndTime { get; set; }
        public int CategoryId { get; set; }
    }
}