using System; using System.Linq; using System.Text; using SqlSugar; namespace JiepeiWMS.Model.Models { /// ///审批流表 /// [SugarTable("WMCheckInfo", "Jiepei_WMS")] public class WMCheckInfo { public WMCheckInfo() { } /// /// 审批流Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 部门Id /// public int DepartId { get; set; } /// /// 唯一Key /// public string Key { get; set; } /// /// 审批名称 /// public string CheckName { get; set; } /// /// 是否启用 /// public bool IsEnable { get; set; } /// /// 审批备注 /// public string CheckRemark { get; set; } /// /// 审核类型(0采购 1领料) /// public int CheckType { get; set; } /// /// 审批人信息 /// public string Json { get; set; } /// /// 修改时间 /// public DateTime UpDateTime { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 主体id /// public int SysOrgId { get; set; } /// /// 部门名称 /// [SugarColumn(IsIgnore = true)] public string DepartName { get; set; } /// /// 审核类型名称 /// [SugarColumn(IsIgnore = true)] public string CheckTypeName { get; set; } } }