2 changed files with 24 additions and 2 deletions
@ -0,0 +1,20 @@ |
|||
package com.bnyer.file.dto; |
|||
|
|||
import io.swagger.annotations.ApiModel; |
|||
import lombok.Getter; |
|||
import lombok.Setter; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author chengkun |
|||
* @Date 2022/7/10 16:37 |
|||
* @Description |
|||
*/ |
|||
@Getter |
|||
@Setter |
|||
@ApiModel("文件url地址") |
|||
public class FileUrlDto implements Serializable { |
|||
|
|||
private String url; |
|||
} |
|||
Loading…
Reference in new issue