You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
576 B

4 years ago
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ChangKeTec.Wms.Models.Wms
{
public partial class TL_EXCEPTION
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long UID { get; set; }
public DateTime LogTime { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string LogType { get; set; }
public string Message { get; set; }
public string CompleteString { get; set; }
}
}