56 lines
822 B
Java
56 lines
822 B
Java
package com.example.survey.vo;
|
|
|
|
import com.example.survey.entity.inner.AdministrativeArea;
|
|
import lombok.*;
|
|
import org.springframework.data.mongodb.core.index.Indexed;
|
|
|
|
/**
|
|
* @author Pope
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
@ToString
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
public class CreateRespondentVo {
|
|
/**
|
|
* 身份证号
|
|
*/
|
|
private String idNumber;
|
|
|
|
/**
|
|
* 电话
|
|
*/
|
|
private String phoneNumber;
|
|
|
|
/**
|
|
* 姓名
|
|
*/
|
|
private String name;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
private String msg;
|
|
|
|
/**
|
|
* 分配的调查人员
|
|
*/
|
|
private String userPhone;
|
|
|
|
/**
|
|
* 是否发病
|
|
*/
|
|
private boolean diseased;
|
|
|
|
/**
|
|
* 性别
|
|
*/
|
|
private String gender;
|
|
|
|
/**
|
|
* 行政区划
|
|
*/
|
|
private AdministrativeArea administrativeArea;
|
|
}
|