ComplianceServer/oldcode/Core.Model/Entity/ISVR_INTERFACECALLLOG.cs

25 lines
638 B
C#

namespace CRM.Core.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("ISVR_INTERFACECALLLOG")]
public partial class ISVR_INTERFACECALLLOG
{
[Key]
public decimal LOGID { get; set; }
[StringLength(50)]
public string CLIENTIP { get; set; }
[StringLength(4000)]
public string CLIENTURL { get; set; }
[StringLength(4000)]
public string CLIENTKEY { get; set; }
public DateTime? CTIME { get; set; }
public string CLIENTKEYENCODE { get; set; }
}
}