You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
482 B
C#

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; }
}
}