From 09cb489dc91cc16f57f6b85a7e3a8aaccf41de15 Mon Sep 17 00:00:00 2001 From: Chopper Date: Tue, 18 May 2021 15:21:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B9=B0=E5=AE=B6=E7=AB=AF?= =?UTF-8?q?=E5=BA=97=E9=93=BA=E7=94=B3=E8=AF=B7=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lili/modules/store/entity/dto/StoreCompanyDTO.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/framework/src/main/java/cn/lili/modules/store/entity/dto/StoreCompanyDTO.java b/framework/src/main/java/cn/lili/modules/store/entity/dto/StoreCompanyDTO.java index d2d48d31..90b62404 100644 --- a/framework/src/main/java/cn/lili/modules/store/entity/dto/StoreCompanyDTO.java +++ b/framework/src/main/java/cn/lili/modules/store/entity/dto/StoreCompanyDTO.java @@ -21,15 +21,17 @@ public class StoreCompanyDTO { @ApiModelProperty(value = "公司名称") private String companyName; - @Size(min = 2, max = 100) @NotBlank(message = "地址不能为空") @ApiModelProperty(value = "地址名称, ','分割") - private String addressPath; + private String storeAddressPath; - @Size(min = 2, max = 100) @NotBlank(message = "地址ID不能为空") @ApiModelProperty(value = "地址id,','分割 ") - private String addressIdPath; + private String storeAddressIdPath; + + @NotBlank(message = "地址详情") + @ApiModelProperty(value = "地址详情") + private String storeAddressDetail; @Size(min = 1, max = 200) @NotBlank(message = "公司地址不能为空")