using System; using SqlSugar; namespace FactorySystemModel.SqlSugarModel { /// ///基础数据字典 /// [SugarTable("TFS_FormulaApplyHistory")] public partial class TFS_FormulaApplyHistory { public TFS_FormulaApplyHistory() { } /// /// Desc:唯一标识 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int FID { get; set; } /// /// 配方ID /// public int FFormulaID { get; set; } /// /// 配方名称 /// public string FFormulaName { get; set; } /// /// 试验号 /// public string FTestCode { get; set; } /// /// 版本号 /// public string FVersionCode { get; set; } /// /// 用户ID /// public int FUserID { get; set; } /// /// 用户名 /// public string FUserName { get; set; } /// /// 申请时间 /// public DateTime FApplyTime { get; set; } /// /// 申请数量 /// public int FApplyNumber { get; set; } /// /// 备注 /// public string FRemark { get; set; } /// /// 导出次数 /// public int FExportTimes { get; set; } /// /// 最后导出时间 /// public DateTime FLastExportTime { get; set; } } }