namespace ZR.ServiceCore.Model; [SugarTable("sys_block")] [Tenant("0")] public class SysBlock { [SugarColumn(IsPrimaryKey = true)] [JsonConverter(typeof(ValueToStringConverter))] public long Id { get; set; } public string Code { get; set; } public string Name { get; set; } }