| | |
| | | package com.oying.modules.pc.store.domain.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | |
| | | @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{} |
| | | |
| | |
| | | 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{} |