admin
2023-10-18 e80a22d84d2e1321843b4e18d99d9a9fc29d315e
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
28
29
30
31
32
33
34
35
36
37
38
39
40
using System;
using System.Collections.Generic;
using Newtonsoft.Json.Linq;
using RiskControl.NewService.Entity.QccDbEntity;
using SqlSugar;
 
namespace RiskControl.NewService.QiChaCha.TycEntity
{
    /// <summary>
    /// 进出口信用
    /// </summary>
    public class TycImportAndExportQuery
    {
        /// <summary>
        /// 搜索关键字(公司名称、公司id、注册号或社会统一信用代码)
        /// </summary>
        public String keyword { get; set; }
 
    }
    public class TycImportAndExportReturnTotal : TycBaseResult<TycImportAndExportReturn> { }
    [SugarTable("TycImportAndExport")]
    public class TycImportAndExportReturn : QccBaseEntity
    {
        /// <summary>
        /// 信用等级
        /// </summary>
        [SugarColumn(IsJson = true)]
        public List<JObject> creditRating { get; set; }
        /// <summary>
        /// 行政处罚信息
        /// </summary>
        [SugarColumn(IsJson = true)]
        public List<JObject> sanction { get; set; }
        /// <summary>
        /// 基本信息
        /// </summary>
        [SugarColumn(IsJson = true)]
        public JObject baseInfo { get; set; }
    }
}