31 lines
941 B
C#
31 lines
941 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Traffic.Data.Models
|
|
{
|
|
public class SiteInformation
|
|
{
|
|
public int Id { get; set; }
|
|
public string County { get; set; }
|
|
public string Area { get; set; }
|
|
public string SiteID { get; set; }
|
|
public string SiteName { get; set; }
|
|
public string EventType { get; set; }
|
|
public string Ip { get; set; }
|
|
public string DbName { get; set; }
|
|
public string TableName { get; set; }
|
|
public string User { get; set; }
|
|
public string Password { get; set; }
|
|
public int FinalRecord { get; set; }
|
|
public string Target { get; set; }
|
|
public string ClusterHead { get; set; }
|
|
public int ARHFinalRecord { get; set; }
|
|
public string Laws { get; set; }
|
|
public string CompanyCode { get; set; }
|
|
|
|
}
|
|
}
|