1234567891011121314151617181920212223 |
- package com.llisoft.service.file.vo;
- import javax.validation.constraints.NotBlank;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- @ApiModel("下载请求实体")
- public class DownloadRequestVo {
-
- @ApiModelProperty("KEY")
- @NotBlank(message="KEY不能为空")
- private String key;
- public String getKey() {
- return key;
- }
- public void setKey(String key) {
- this.key = key;
- }
-
- }
|