package com.ruoyi.bussiness.object.request.placementApply;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotNull;
|
|
@Data
|
public class ApplyAllExportRequest {
|
|
@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;
|
|
}
|