fix updateShopCode接口增加修改门店name功能

This commit is contained in:
shuo.wang
2024-10-30 17:05:19 +08:00
parent b388e80ef1
commit 88381ccb8f
3 changed files with 7 additions and 2 deletions

View File

@@ -18,7 +18,11 @@ public class UpdateShopCodeRequest {
@NotNull
private Long shopId;
@NotBlank
@ApiModelProperty("门店代码")
private String shopCode;
@ApiModelProperty("门店名称")
private String shopName;
}