using DTO.WebCrawler;
|
using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace Crawler
|
{
|
public class sichuantousujieshou
|
{
|
public string msg { get; set; }
|
public int total { get; set; }
|
public string code { get; set; }
|
|
public Data data;
|
}
|
|
public class Data
|
{
|
public List<sichuantousujieshoudtl> rows;
|
public int total { get; set; }
|
}
|
|
|
public class sichuantousujieshoumingxi
|
{
|
public string msg { get; set; }
|
public int total { get; set; }
|
public string code { get; set; }
|
|
public sichuantousujieshoudtl data;
|
}
|
|
public class sichuantousujieshoudtl
|
{
|
public string id { get; set; }
|
public DateTime noticeTime { get; set; }
|
|
public string regionCode { get; set; }
|
|
public string regionName { get; set; }
|
|
public string complainant { get; set; }
|
|
public string openTenderCode { get; set; }
|
|
public string author { get; set; }
|
|
|
public string purchaseManner { get; set; }
|
|
public string title { get; set; }
|
public string shorttitle { get; set; }
|
public string pageurl { get; set; }
|
|
public string content { get; set; }
|
|
public string description { 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; }
|
}
|
}
|