using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Security.Principal;
namespace DopInterfacePlatform.Entity
{
[Table("InterfacePlatformLog")]
public class InterfacePlatformLog
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public Int64 operatorcol_id { get; set; }
///
/// Desc:
/// Default:
/// Nullable:False
///
public string operatorcol_ip { get; set; }
///
/// Desc:调用入参
/// Default:
/// Nullable:True
///
public string operatorcol_request { get; set; }
///
/// Desc:调用出参
/// Default:
/// Nullable:True
///
public string operatorcol_respone { get; set; }
///
/// Desc:
/// Default:
/// Nullable:False
///
public DateTime operatorcol_time { get; set; }
///
/// Desc:调用接口耗时,单位为毫秒
/// Default:
/// Nullable:False
///
public int operatorcol_duration { get; set; }
}
}