using System; using SqlSugar; namespace HT.Cloud.Domain.SystemManage { /// /// 创 建:超级管理员 /// 日 期:2022-10-06 11:25 /// 描 述:条码规则实体类 /// [SugarTable("sys_coderule")] [TenantAttribute("0")] public class CoderuleEntity : IEntity,ICreationAudited,IModificationAudited,IDeleteAudited { /// /// 主键 /// [SugarColumn(ColumnName="F_Id", ColumnDescription = "主键",IsPrimaryKey = true)] public string F_Id { get; set; } /// /// 规则名称 /// [SugarColumn(ColumnName="F_RuleName", ColumnDescription = "规则名称",ColumnDataType = "nvarchar(50)", IsNullable = true)] public string F_RuleName { get; set; } /// /// 规则内容 /// [SugarColumn(ColumnName="F_RuleJson", ColumnDescription = "规则内容",ColumnDataType = "longtext")] public string F_RuleJson { get; set; } /// /// 重设机制 /// [SugarColumn(ColumnName="F_Reset", ColumnDescription = "重设机制",ColumnDataType = "nvarchar(50)", IsNullable = true)] public string F_Reset { get; set; } /// /// 打印模板Id /// [SugarColumn(ColumnName = "F_TemplateId", ColumnDescription = "模板Id", ColumnDataType = "nvarchar(50)", IsNullable = true)] public string F_TemplateId { get; set; } /// /// /// [SugarColumn(ColumnName="F_DeleteMark", IsNullable = true)] public bool? F_DeleteMark { get; set; } /// /// /// [SugarColumn(ColumnName="F_EnabledMark", IsNullable = true)] public bool? F_EnabledMark { get; set; } /// /// /// [SugarColumn(ColumnName="F_Description",ColumnDataType = "longtext", IsNullable = true)] public string F_Description { get; set; } /// /// /// [SugarColumn(ColumnName="F_CreatorTime", IsNullable = true)] public DateTime? F_CreatorTime { get; set; } /// /// /// [SugarColumn(ColumnName="F_CreatorUserId", ColumnDescription = "",ColumnDataType = "nvarchar(50)", IsNullable = true)] public string F_CreatorUserId { get; set; } /// /// /// [SugarColumn(ColumnName="F_CreatorUserName", ColumnDescription = "",ColumnDataType = "nvarchar(50)", IsNullable = true)] public string F_CreatorUserName { get; set; } /// /// /// [SugarColumn(ColumnName="F_LastModifyTime", IsNullable = true)] public DateTime? F_LastModifyTime { get; set; } /// /// /// [SugarColumn(ColumnName="F_LastModifyUserId", ColumnDescription = "",ColumnDataType = "nvarchar(50)", IsNullable = true)] public string F_LastModifyUserId { get; set; } /// /// /// [SugarColumn(ColumnName="F_DeleteTime", IsNullable = true)] public DateTime? F_DeleteTime { get; set; } /// /// /// [SugarColumn(ColumnName="F_DeleteUserId", ColumnDescription = "",ColumnDataType = "nvarchar(50)", IsNullable = true)] public string F_DeleteUserId { get; set; } /// /// 打印模板 /// [SugarColumn(IsIgnore = true)] public string F_TemplateName { get; set; } /// /// 打印方式 /// [SugarColumn(IsIgnore = true)] public int? F_PrintType { get; set; } /// /// 是否批量 /// [SugarColumn(IsIgnore = true)] public bool? F_Batch { get; set; } } }