| package com.mzl.flower.dto.request.customer; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import javax.validation.constraints.NotBlank; | 
|   | 
| @Data | 
| public class UpdateCustomerDTO { | 
|   | 
|     private Long id; | 
|   | 
|     @ApiModelProperty("用户id") | 
|     private String userId; | 
|   | 
|     @ApiModelProperty("所属合伙人userId") | 
|     private String partnerUserId; | 
|   | 
|     @NotBlank(message = "店铺名称不能为空") | 
|     @ApiModelProperty("店铺名称") | 
|     private String name; | 
|   | 
|     @ApiModelProperty("封面") | 
|     private String cover; | 
|   | 
|     @ApiModelProperty("省") | 
|     private String province; | 
|   | 
|     @ApiModelProperty("市") | 
|     private String city; | 
|   | 
|     @ApiModelProperty("区") | 
|     private String region; | 
|   | 
|     @ApiModelProperty("店铺地址") | 
|     private String address; | 
|   | 
|     @ApiModelProperty("店铺简介") | 
|     private String description; | 
| } |