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.

47 lines
1.3 KiB

4 years ago
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; }
}
}