| 12345678910111213141516171819202122232425 |
- /**
- * Generated by orval v7.0.1 🍺
- * Do not edit manually.
- * Serve API
- * Serve应用接口文档
- * OpenAPI spec version: 0.0.1-SNAPSHOT
- */
- /**
- * OSS配置DTO,用于更新OSS存储配置信息
- */
- export interface OssConfigDto {
- /** Access Key */
- accessKey?: string;
- /** Bucket */
- bucket?: string;
- /** Endpoint */
- endpoint?: string;
- /** 公开访问域名 */
- publicDomain?: string;
- /** Region */
- region?: string;
- /** Secret Key */
- secretKey?: string;
- }
|