using SqlSugar; using System; using System.Linq; using System.Text; namespace Txgy.RBS.DbModel.Models { /// /// /// public partial class result_json { public result_json() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int id { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? result_id { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string json { get; set; } } }