From 1c3f11dfd7493a4c4a8d41e2499477840bcc070c Mon Sep 17 00:00:00 2001 From: baizonghao <1719256278@qq.com> Date: 星期五, 19 五月 2023 15:01:46 +0800 Subject: [PATCH] 限制文件大小,用户,报案人审核筛选 --- src/main/java/com/example/jz/modle/vo/ReportListVo.java | 18 ++++++++++++++++-- 1 files changed, 16 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/example/jz/modle/vo/ReportListVo.java b/src/main/java/com/example/jz/modle/vo/ReportListVo.java index f008f83..dd96ae4 100644 --- a/src/main/java/com/example/jz/modle/vo/ReportListVo.java +++ b/src/main/java/com/example/jz/modle/vo/ReportListVo.java @@ -2,14 +2,28 @@ 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; //缇d 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; + } -- Gitblit v1.8.0