namespace ZR.Model.System; /// /// 编码规则表 /// [SugarTable("base_coderule")] [Tenant("0")] public class BaseCodeRule { /// /// 代码 /// [SugarColumn(IsPrimaryKey = true)] public string Code { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 类型 /// public string Type { get; set; } /// /// 前缀 /// public string Prefix { get; set; } /// /// 宽度 /// public int Width { get; set; } /// /// 初始值 /// public int IniVal { get; set; } /// /// 增量 /// public int Step { get; set; } /// /// 终止值 /// public int FinishVal { get; set; } /// /// 循环 /// public int Cycle { get; set; } /// /// 后缀 /// public string Sufix { get; set; } /// /// 分隔符 /// public string JoinChar { get; set; } /// /// 填充符 /// public string FillChar { get; set; } /// /// 类型值 /// public string TypeVal { get; set; } /// /// 循环号 /// public int CycleVal { get; set; } /// /// 当前值 /// public int CurrVal { get; set; } /// /// 版本号 /// public int Version { get; set; } }