25 lines
588 B
C#
25 lines
588 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.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; }
|
|
}
|
|
}
|