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
28
29
30
31
32
33
34
35
36
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; }
    }
}