using System;
using SqlSugar;
namespace WMS.Entity.BllAsnEntity
{
///
/// 审核记录表
///
[SugarTable("BllAuditLog")]
public class BllAuditLog : BaseEntity
{
///
/// 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; }
///
/// Desc:审核人
/// Default:
/// Nullable:True
///
public int? AuditUser { get; set; }
///
/// Desc:功能编号
/// Default: 001:入库单撤销 002:托盘绑定撤销
/// Nullable:True
///
public string FunctionCode { get; set; }
}
}