无关风月
3 天以前 110809db132446d2fa5ed2986f1ec2ce755b5b13
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
package com.ruoyi.system.model;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDate;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 已办证土地
 * </p>
 *
 * @author WuGuanFengYue
 * @since 2025-10-17
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("land_certified")
@ApiModel(value="LandCertified对象", description="已办证土地")
public class LandCertified implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "主键")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty(value = "地块名称")
    @TableField("land_name")
    private String landName;
 
    @ApiModelProperty(value = "辖区名称")
    @TableField("street_name")
    private String streetName;
 
    @ApiModelProperty(value = "镇街ID")
    @TableField("street_id")
    private Integer streetId;
 
    @ApiModelProperty(value = "详细地址")
    @TableField("address")
    private String address;
 
    @ApiModelProperty(value = "面积(㎡)")
    @TableField("area")
    private Double area;
 
    @ApiModelProperty(value = "性质 0:商业用地;1:综合用地;2:住宅用地;3:工业用地;4:其他用地;")
    @TableField("type")
    private Integer type;
 
    @ApiModelProperty(value = "现状 0:闲置;1:出租;2:置换;3:抵押;")
    @TableField("status")
    private Integer status;
 
    @ApiModelProperty(value = "权属人")
    @TableField("owner")
    private String owner;
 
    @ApiModelProperty(value = "证号")
    @TableField("certificate_number")
    private String certificateNumber;
 
    @ApiModelProperty(value = "发证时间")
    @TableField("certificate_time")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
 
    private LocalDateTime certificateTime;
 
    @ApiModelProperty(value = "终止日期")
    @TableField("terminal_date")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
 
    private LocalDate terminalDate;
 
    @ApiModelProperty(value = "抵押银行")
    @TableField("mortgage_bank")
    private String mortgageBank;
 
    @ApiModelProperty(value = "抵押时间")
    @TableField("mortgage_time")
    private LocalDateTime mortgageTime;
 
    @ApiModelProperty(value = "抵押金额")
    @TableField("mortgage_amount")
    private BigDecimal mortgageAmount;
 
    @ApiModelProperty(value = "备注")
    @TableField("remark")
    private String remark;
 
    @ApiModelProperty(value = "是否出让")
    @TableField("is_sell")
    private Boolean isSell;
 
    @ApiModelProperty(value = "相关附件,多个附件使用英文逗号拼接")
    @TableField("attachment_urls")
    private String attachmentUrls;
 
    @ApiModelProperty(value = "创建时间")
    @TableField("create_time")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
 
    private LocalDateTime createTime;
 
    @ApiModelProperty(value = "创建人")
    @TableField("create_by")
    private String createBy;
 
    @ApiModelProperty(value = "更新时间")
    @TableField("update_time")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
 
    private LocalDateTime updateTime;
 
    @ApiModelProperty(value = "更新人")
    @TableField("update_by")
    private String updateBy;
 
    @ApiModelProperty(value = "是否删除 0-否,1-是")
    @TableField("disabled")
    private Boolean disabled;
 
 
}