| | |
| | | |
| | | import com.example.jz.modle.entity.Report; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | @ApiModel(description = "报案人员首页",value = "ReportListVo") |
| | | public class ReportListVo extends Report { |
| | | //是否进群 |
| | | private Integer isIntoGroup; |
| | | |
| | | //群id |
| | | private Integer groupId; |
| | | |
| | | //报案人 |
| | | @ApiModelProperty(value = "报案人",dataType = "String") |
| | | private String reporterName; |
| | | |
| | | @ApiModelProperty(value = "报案人手机号",dataType = "String") |
| | | //报案人手机号 |
| | | private String mobile; |
| | | |
| | | @ApiModelProperty(value = "报案人身份证号",dataType = "String") |
| | | //报案人身份证号 |
| | | private String idcard; |
| | | |
| | | private String sex; |
| | | |
| | | } |