DownloadRequestVo.java 453 B

1234567891011121314151617181920212223
  1. package com.llisoft.service.file.vo;
  2. import javax.validation.constraints.NotBlank;
  3. import io.swagger.annotations.ApiModel;
  4. import io.swagger.annotations.ApiModelProperty;
  5. @ApiModel("下载请求实体")
  6. public class DownloadRequestVo {
  7. @ApiModelProperty("KEY")
  8. @NotBlank(message="KEY不能为空")
  9. private String key;
  10. public String getKey() {
  11. return key;
  12. }
  13. public void setKey(String key) {
  14. this.key = key;
  15. }
  16. }