namespace iWareLog.ORM
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("LOGReceiveMsgLog")]
|
public partial class LOGReceiveMsgLog
|
{
|
public int id { get; set; }
|
|
public int type { get; set; }
|
|
[Required]
|
[StringLength(100)]
|
public string interfacename { get; set; }
|
|
public string requeststr { get; set; }
|
|
public string responsestr { get; set; }
|
|
public DateTime receivetime { get; set; }
|
|
[StringLength(200)]
|
public string remark { get; set; }
|
}
|
}
|