username@email.com
2025-04-27 15eb82df2d6ec539e9d4245bfe08d531e8eb6379
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
using System;
using System.Collections.Generic;
using System.Text;
 
namespace DTO.WebCrawler
{
   public class ZhengfuProjectDTO
    {
        public string Id { get; set; }
        public DateTime NoticeTime { get; set; }
        public string NoticeTimeName { get; set; }
        public string Sheng { get; set; }
        public string City { get; set; }
        public string RegionCode { get; set; }
        public string ShengName { get; set; }
        public string Cgfs { get; set; }
        public string CgfsName { get; set; }
        public string Gglx { get; set; }
        public string GglxName { get; set; }
        public string OpenTenderCode { get; set; }
        public string Title { get; set; }
        public string Shorttitle { get; set; }
        public string Pageurl { get; set; }
        public string Remark { get; set; }
        public string RecStatus { get; set; }
        public string Creater { get; set; }
        public string CreaterName { get; set; }
        public DateTime Createtime { get; set; }
        public string Modifier { get; set; }
        public DateTime Modifytime { get; set; }
        public string Content { get; set; }
        public string Content1 { get; set; }
        public string Pingmu { get; set; }
        public string Purchaser { get; set; }
        public decimal? Budget { get; set; }
        public string Agency { get; set; }
        public string AgencyCode { get; set; }
        public DateTime? OpenTenderTime { get; set; }
    }
 
    public class ZhengfuProjectDTOSearch : SearchEntity
    {
        public string StartTime { get; set; }
 
 
 
        public string Createtime { get; set; }
        public string Creater { get; set; }
 
        public string Sheng { get; set; }
        public string City { get; set; }
        public string AreaId { get; set; }
 
        public string Cgfs { get; set; }
        public string Gglx { get; set; }
 
        public string Number { get; set; }
        public string Name { get; set; }
 
 
 
         
 
    }
}