using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace Txgy.RBS.DbModel { [SugarTable("result_json")] public class ResultJson { [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } [SugarColumn(ColumnName = "result_id")] public int ResultId { get; set; } [SugarColumn(ColumnName = "json")] public string Json { get; set; } } }