using System.Collections.Generic;
|
using Newtonsoft.Json.Linq;
|
using RiskControl.NewService.Entity.QccDbEntity;
|
using SqlSugar;
|
|
namespace RiskControl.NewService.Entity.TycDbEntity
|
{
|
/// <summary>
|
/// 企业年报
|
/// </summary>
|
public class TycAnnualreport : QccBaseEntity
|
{
|
/// <summary>
|
/// 数据索引
|
/// </summary>
|
public int ItemIndex { get; set; }
|
/// <summary>
|
/// 总条数
|
/// </summary>
|
public int TotalItems { get; set; }
|
/// <summary>
|
/// 年份
|
/// </summary>
|
public string ReportYear { get; set; }
|
/// <summary>
|
/// 基本信息
|
/// </summary>
|
[SugarColumn(IsJson = true)]
|
public JObject BaseInfo { get; set; }
|
/// <summary>
|
/// 社保信息
|
/// </summary>
|
[SugarColumn(IsJson = true)]
|
public JObject ReportSocialSecurityInfo { get; set; }
|
}
|
}
|