10 changed files with 85 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||
package com.bnyer.img.dto; |
|||
|
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Getter; |
|||
import lombok.Setter; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import javax.validation.constraints.NotNull; |
|||
import java.io.Serializable; |
|||
|
|||
|
|||
@Getter |
|||
@Setter |
|||
@ApiModel("首页用户详情接收类") |
|||
public class UserImgsDetailsDto implements Serializable { |
|||
|
|||
@NotBlank(message = "搜索码不能为空!") |
|||
@ApiModelProperty(value="搜索码") |
|||
private String scanCode; |
|||
} |
|||
Loading…
Reference in new issue