username@email.com
2024-07-24 294494e5559dcc92670dd9800caf976853aff876
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
using DTO.WebCrawler;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Crawler
{
   public class sichuanjieshou
    {
        public string msg { get; set; }
        public int total { get; set; }
        public string code { get; set; }
 
        public List<sichuanjieshoudtl> data;
    }
 
    public class sichuanjieshoudtl
    {
        public DateTime noticeTime { get; set; }
         
        public string regionCode { get; set; }
 
        public string regionName { get; set; }
        
        public string purchaseManner { get; set; }
        public string openTenderCode { get; set; }
        public string title { get; set; }
        public string shorttitle { get; set; }
        public string pageurl { get; set; }
        
        public string content { get; set; }
        public string purchaser { get; set; }
        public string budget { get; set; }
        public string agency { get; set; }
        public string agencyCode { get; set; }
        public DateTime? openTenderTime { get; set; }
    }
 
    public class eswebcrawler
    {
        public string Id { get; set; }
        
        public string noticeTime { get; set; }
        public string sheng { get; set; }
        public string shengName { get; set; }
        public string city { get; set; }
        public string cityName { get; set; }
 
        public string regionCode { get; set; }
 
        public string regionName { 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 pingmu { get; set; }
        public string pingmuName { get; set; }
        public string purchaser { get; set; }
        public string budget { get; set; }
        public string agency { get; set; }
        public string agencyCode { get; set; }
        public string modifyTime { get; set; }
        public string openTenderTime { get; set; }
    }
}