From 295e8df5e73a9365f4ddfbf2bb3f82cbb494baa5 Mon Sep 17 00:00:00 2001 From: xin <1099200748@qq.com> Date: Thu, 07 Aug 2025 15:55:39 +0800 Subject: [PATCH] 订单状态 --- oying-system/src/main/java/com/oying/modules/pc/store/domain/dto/StoreFieldUpdateRequest.java | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/oying-system/src/main/java/com/oying/modules/pc/store/domain/dto/StoreFieldUpdateRequest.java b/oying-system/src/main/java/com/oying/modules/pc/store/domain/dto/StoreFieldUpdateRequest.java index 848330e..faba857 100644 --- a/oying-system/src/main/java/com/oying/modules/pc/store/domain/dto/StoreFieldUpdateRequest.java +++ b/oying-system/src/main/java/com/oying/modules/pc/store/domain/dto/StoreFieldUpdateRequest.java @@ -1,5 +1,6 @@ package com.oying.modules.pc.store.domain.dto; +import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @@ -34,10 +35,16 @@ @NotNull(groups = UpdateStoreBusinessStatusGroup.class) private Integer businessStatus; + @ApiModelProperty(value = "店铺logo图片") + private Long logoImageId; + public interface UpdateStoreLogoImageGroup{} @NotBlank(groups = UpdateStoreLogoImageGroup.class) private String logoImageUploadId; + + @ApiModelProperty(value = "店铺封面图") + private Long coverImageId; public interface UpdateStoreCoverImageGroup{} @@ -67,9 +74,11 @@ public interface UpdateStoreBusinessHoursGroup{} @NotNull(groups = UpdateStoreBusinessHoursGroup.class) + @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "HH:mm") private LocalTime openTime; @NotNull(groups = UpdateStoreBusinessHoursGroup.class) + @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "HH:mm") private LocalTime closeTime; public interface UpdateStoreAddressGroup{} -- Gitblit v1.9.3