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