From 179c4d64313c9b7572778da4aaaf6c6584fe457d Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期二, 20 五月 2025 23:48:08 +0800 Subject: [PATCH] 修改文件上传类型限制 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/community/convenient/ConvenientElevatingPointDTO.java | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/community/convenient/ConvenientElevatingPointDTO.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/community/convenient/ConvenientElevatingPointDTO.java index 8579ecc..3cbd305 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/community/convenient/ConvenientElevatingPointDTO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/community/convenient/ConvenientElevatingPointDTO.java @@ -42,10 +42,6 @@ @NotBlank(groups = {AddGroup.class}, message = "微信账号不能为空") private String wechatAccount; - @ApiModelProperty("所属地区") - @NotBlank(groups = {AddGroup.class}, message = "所属地区不能为空") - private String region; - @ApiModelProperty("详细地址") @NotBlank(groups = {AddGroup.class}, message = "详细地址不能为空") private String address; @@ -66,11 +62,14 @@ @ApiModelProperty(value = "所属社区id") @NotNull(groups = {AddGroup.class}, message = "所属社区id不能为空") - private Long communityId; + private String communityId; @ApiModelProperty(value = "创建人", hidden = true) private Long createdBy; @ApiModelProperty(value = "更新人", hidden = true) private Long updatedBy; + + @ApiModelProperty(value = "提货点详细地址") + private String detailAddress; } -- Gitblit v1.7.1