using System; using System.ComponentModel.DataAnnotations; using SqlSugar; namespace HT.Cloud.Domain.SystemManage { /// /// 创 建:超级管理员 /// 日 期:2022-10-08 16:20 /// 描 述:条码规则计数实体类 /// [SugarTable("sys_coderulelog")] [TenantAttribute("0")] public class CoderulelogEntity { /// /// 主键 /// [SugarColumn(ColumnName="F_Id", ColumnDescription = "主键",ColumnDataType = "nvarchar(50)",IsPrimaryKey = true)] public string F_Id { get; set; } /// /// 规则Id /// [SugarColumn(ColumnName="F_RuleId", ColumnDescription = "规则Id",ColumnDataType = "nvarchar(50)")] public string F_RuleId { get; set; } /// /// key /// [SugarColumn(ColumnName="F_Key", ColumnDescription = "key",ColumnDataType = "nvarchar(100)")] public string F_Key { get; set; } /// /// value /// [SugarColumn(ColumnName="F_Value", ColumnDescription = "value",ColumnDataType = "nvarchar(100)", IsNullable = true)] public string F_Value { get; set; } /// /// 计数 /// [SugarColumn(ColumnName="F_Score", ColumnDescription = "计数", IsNullable = true)] public int? F_Score { get; set; } } }