无关风月
3 天以前 0d1a73f4c0d35951dc42f0e35526d69c0e922afc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.system.query;
 
import com.ruoyi.common.core.domain.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "已办证土地分页列表query")
public class LandReportedListQuery extends BasePage {
 
 
    @ApiModelProperty(value = "地块名称")
    private String landName;
    @ApiModelProperty(value = "辖区")
    private String streetName;
    @ApiModelProperty(value = "权属人")
    private String userName;
    @ApiModelProperty(value = "证号")
    private String certificateNumber;
    @ApiModelProperty(value = "现状 0:闲置;1:出租;2:置换;3:抵押;")
    private Integer status;
 
}