Pu Zhibing
2025-04-22 d138293736414a314467a2641e6116ff263ead48
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
package com.ruoyi.bussiness.object.request.placementApply;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
@Data
public class ApplyProblemExportRequest {
 
    @NotNull(message = "申请表id不能为空")
    @ApiModelProperty(value = "申请表id")
    private Long applyId;
 
    @ApiModelProperty(value = "拆迁项目名称")
    private String projectName;
 
    @ApiModelProperty(value = "街道")
    private String street;
 
    @ApiModelProperty(value = "街区")
    private String community;
 
    @ApiModelProperty(value = "户主或者身份证")
    private String headOrIdCard;
 
}