package com.zzg.system.domain.bo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
@Data
|
public class SurveyResultRegistrationBO {
|
@ApiModelProperty(value = "是否同意 1是 0 否")
|
private Integer isAgree;
|
|
@ApiModelProperty(value = "是否同意 1是 0 否")
|
private Integer isSign;
|
|
@ApiModelProperty(value = "是否是否确认 1是 0 否")
|
private Integer isConfirm;
|
|
@ApiModelProperty(value = "是否签订模拟协议 1是 0否")
|
private Integer isSignedVirtualAgreement;
|
|
@ApiModelProperty(value = "是否签订正式协议 1是 0否")
|
private Integer isSignOfficialAgreement;
|
|
@ApiModelProperty(value = "是否签订房屋征收真是补偿协议 1是 0否")
|
private Integer isSignStateAgreement;
|
}
|