package com.example.jz.modle.vo;
|
|
import com.example.jz.modle.entity.Report;
|
import lombok.Data;
|
|
@Data
|
public class ReportVXVO extends Report {
|
private String description;
|
|
private String Location; // 现居地
|
|
private String sex; // 性别
|
|
private String workingLocation; // 工作单位
|
|
private String realName; // 姓名
|
|
private String userIdCard; // 身份证
|
|
private String phone;
|
}
|