namespace iWareLog.ORM
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("LOGERRORFailSentMessage")]
|
public partial class LOGERRORFailSentMessage
|
{
|
public int id { get; set; }
|
|
[Required]
|
[StringLength(200)]
|
public string url { get; set; }
|
|
public string requeststr { get; set; }
|
|
public int retrytimes { get; set; }
|
|
public int isok { get; set; }
|
|
public int ismailed { get; set; }
|
|
public DateTime createtime { get; set; }
|
|
public DateTime updatetime { get; set; }
|
|
[StringLength(200)]
|
public string resmsg { get; set; }
|
}
|
}
|