admin
2024-09-20 8b7b39172ee548ff303dbd73816cb7c1071f7887
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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; }
    }
}