using System; using System.Collections.Generic; using System.Security.AccessControl; using System.Text; namespace Model.ModelDto { public class AuditLogDto { public int Id { get; set; } /// /// Desc:单据号 /// Default: /// Nullable:True /// public string OrderNo { get; set; } /// /// Desc:托盘号 /// Default: /// Nullable:True /// public string PalletNo { get; set; } /// /// Desc:关键信息 /// Default: /// Nullable:True /// public string Msg { get; set; } /// /// Desc:申请原因 /// Default: /// Nullable:True /// public string Reason { get; set; } /// /// Desc:状态 /// Default: /// Nullable:True /// public string Status { get; set; } /// /// Desc:评语/意见 /// Default: /// Nullable:True /// public string Opinion { get; set; } /// /// Desc:当前状态 /// Default: /// Nullable:True /// public string StartStatus { get; set; } /// /// Desc:目标状态 /// Default: /// Nullable:True /// public string EndStatus { get; set; } /// /// Desc:审核日期 /// Default: /// Nullable:True /// public DateTime? AuditTime { get; set; } /// /// 审核人名称 /// public string AuditUserName { get; set; } /// /// 功能编号 /// public string FunctionCode { get; set; } /// /// 创建人名称 /// public string CreateUserName { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } } }