1234567891011121314151617181920212223242526272829303132333435 |
- package com.llisoft.service.file.vo;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- @ApiModel("上传返回实体CDN")
- public class UploadCdnResponseVo extends UploadResponseVo{
-
- @ApiModelProperty("宽度200缩略图")
- private String w200 = "!w200";
- @ApiModelProperty("宽度缩400略图")
- private String w400 = "!w400";
- @ApiModelProperty("宽度800缩略图")
- private String w800 = "!w800";
-
- public String getW200() {
- return w200;
- }
- public void setW200(String w200) {
- this.w200 = w200;
- }
- public String getW400() {
- return w400;
- }
- public void setW400(String w400) {
- this.w400 = w400;
- }
- public String getW800() {
- return w800;
- }
- public void setW800(String w800) {
- this.w800 = w800;
- }
-
- }
|