ComplianceServer/oldcode/Model/Entity/HIS_ISVR_INTERFACECALLLOG.cs

25 lines
596 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.HIS_ISVR_INTERFACECALLLOG")]
public partial class HIS_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; }
}
}