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.
45 lines
1.0 KiB
45 lines
1.0 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
public partial class VIEW_BASEDATA_LOG
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
public long UID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(80)]
|
|
public string 操作员 { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
public DateTime 日志时间 { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 3)]
|
|
[StringLength(50)]
|
|
public string 日志类型 { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 4)]
|
|
[StringLength(50)]
|
|
public string 数据类型 { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 5)]
|
|
[StringLength(4000)]
|
|
public string 原值 { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 6)]
|
|
[StringLength(4000)]
|
|
public string 新值 { get; set; }
|
|
|
|
[StringLength(500)]
|
|
public string 备注 { get; set; }
|
|
}
|
|
}
|
|
|