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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
using RiskControl.NewService.QiChaCha.QccEntity;
using SqlSugar;
 
namespace RiskControl.NewService.Entity.QccDbEntity
{
    /// <summary>
    /// 土地抵押详情
    /// </summary>
    public class QccLandMortgageDetail:QccBaseEntity
    {
        /// <summary>
        /// 
        /// </summary>
        public string Id { get; set; }
        /// <summary>
        /// 宗地标识
        /// </summary>
        public string LandSign { get; set; }
        /// <summary>
        /// 宗地编号
        /// </summary>
        public string LandNo { get; set; }
        /// <summary>
        /// 行政区
        /// </summary>
        public string AdministrativeArea { get; set; }
        /// <summary>
        /// 行政区(扩展属性,根据行政代码对应得到)
        /// </summary>
        public string AdministrativeAreaName { get; set; }
        /// <summary>
        /// 土地面积(公顷)
        /// </summary>
        public string Acreage { get; set; }
        /// <summary>
        /// 宗地地址
        /// </summary>
        public string Address { get; set; }
        /// <summary>
        /// 土地他项权利人证号
        /// </summary>
        public string ObligeeNo { get; set; }
        /// <summary>
        /// 土地使用权证号
        /// </summary>
        public string UsufructNo { get; set; }
        /// <summary>
        /// 土地抵押人性质
        /// </summary>
        public string MortgagorNature { get; set; }
        /// <summary>
        /// 抵押土地用途
        /// </summary>
        public string MortgagePurpose { get; set; }
        /// <summary>
        /// 抵押土地权属性质与使用权类型
        /// </summary>
        public string NatureAndType { get; set; }
        /// <summary>
        /// 抵押面积(公顷)
        /// </summary>
        public string MortgageAcreage { get; set; }
        /// <summary>
        /// 评估金额(万元)
        /// </summary>
        public string AssessmentPrice { get; set; }
        /// <summary>
        /// 抵押金额(万元)
        /// </summary>
        public string MortgagePrice { get; set; }
        /// <summary>
        /// 土地抵押登记起始时间
        /// </summary>
        public string OnBoardStartTime { get; set; }
        /// <summary>
        /// 土地抵押结束时间
        /// </summary>
        public string OnBoardEndTime { get; set; }
 
        /// <summary>
        /// 土地抵押人名称
        /// </summary>
        [SugarColumn(IsJson = true)]
        public MortgagorName MortgagorName { get; set; }
 
        /// <summary>
        /// 土地抵押权人
        /// </summary>
        [SugarColumn(IsJson = true)]
        public MortgagePeople MortgagePeople { get; set; }
    }
}