using System.Collections.Generic;
|
using Newtonsoft.Json.Linq;
|
using SqlSugar;
|
|
namespace RiskControl.NewService.Entity.QccDbEntity
|
{
|
/// <summary>
|
/// 证书详情
|
/// </summary>
|
public class QccCertificationDetail:QccBaseEntity
|
{
|
/// <summary>
|
/// 主键
|
/// </summary>
|
public string Id { get; set; }
|
/// <summary>
|
/// 证书的JSON格式
|
/// </summary>
|
[SugarColumn(IsJson = true)]
|
public List<KeyValuePair<string,string>> Data { get; set; }
|
/// <summary>
|
/// Json数据
|
/// </summary>
|
[SugarColumn(IsJson = true)]
|
public List<KeyValuePair<string, string>> Schema { get; set; }
|
}
|
}
|