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.
46 lines
1.3 KiB
46 lines
1.3 KiB
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
public partial class TL_BASEDATA
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public long UID { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(80)]
|
|
[DisplayName("操作员")]
|
|
public string OperName { get; set; }
|
|
|
|
[DisplayName("日志时间")]
|
|
public DateTime LogTime { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(50)]
|
|
[DisplayName("日志类型")]
|
|
public string LogType { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(50)]
|
|
[DisplayName("数据类型")]
|
|
public string DataType { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(4000)]
|
|
[DisplayName("原值")]
|
|
public string OldValue { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(4000)]
|
|
[DisplayName("新值")]
|
|
public string NewValue { get; set; }
|
|
|
|
[StringLength(500)]
|
|
[DisplayName("备注")]
|
|
public string Remark { get; set; }
|
|
}
|
|
}
|
|
|