| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 | | package com.doumee.dao.business.model.dto; |  |   |  | import io.swagger.annotations.ApiModelProperty; |  | import lombok.Data; |  |   |  | import java.math.BigDecimal; |  |   |  | /** |  |  * Created by IntelliJ IDEA. |  |  * |  |  * @Author : Rk |  |  * @create 2023/6/7 15:09 |  |  */ |  | @Data |  | public class OssModel { |  |   |  |     private String accessKey; |  |     private String url; |  |     private String endpoint; |  |     private String accessId; |  |   |  |     private String bucket; |  |     private String cateFolder; |  |     private String goodsFolder; |  | } | 
 |