You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
820 B
C#
27 lines
820 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace VOL.Entity.SystemModels
|
|
{
|
|
//[DBConnectionAttribute(ConnectionString = "Api")]
|
|
public class ApiLog:BaseEntity
|
|
{
|
|
[Key]
|
|
public int ID { get; set; }
|
|
public string LogCode { get; set; }
|
|
public string Url { get; set; }
|
|
public string ServerIp { get; set; }
|
|
public string ClientIp { get; set; }
|
|
public string RequestPar { get; set; }
|
|
public string Responsepar { get; set; }
|
|
public DateTime RequestDate { get; set; }
|
|
public DateTime CreateDate { get; set; }
|
|
public int Time_Consuming { get; set; }
|
|
public int ResponseStatus { get; set; }
|
|
public string BrowserType { get; set; }
|
|
|
|
}
|
|
}
|