提交 | 用户 | 时间
|
c7f709
|
1 |
package com.iailab.module.data.channel.http.vo; |
L |
2 |
|
|
3 |
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
|
4 |
import com.alibaba.excel.annotation.ExcelProperty; |
|
5 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
6 |
import lombok.Data; |
|
7 |
|
|
8 |
import java.util.Date; |
|
9 |
|
|
10 |
/** |
|
11 |
* @author lirm |
|
12 |
* @Description |
|
13 |
* @createTime 2024年08月26日 |
|
14 |
*/ |
|
15 |
@Schema(description = "数据平台 - KioDevice Response VO") |
|
16 |
@Data |
|
17 |
@ExcelIgnoreUnannotated |
|
18 |
public class HttpTokenRespVO { |
|
19 |
|
|
20 |
@Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
21 |
@ExcelProperty("ID") |
|
22 |
private String id; |
|
23 |
|
be2308
|
24 |
@Schema(description = "接口ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
潘 |
25 |
@ExcelProperty("接口ID") |
c7f709
|
26 |
private String apiId; |
L |
27 |
|
be2308
|
28 |
@Schema(description = "登录地址", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
潘 |
29 |
@ExcelProperty("登录地址") |
c7f709
|
30 |
private String loginUrl; |
L |
31 |
|
be2308
|
32 |
@Schema(description = "ClientId", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
潘 |
33 |
@ExcelProperty("ClientId") |
c7f709
|
34 |
private String clientId; |
L |
35 |
|
be2308
|
36 |
@Schema(description = "ClientSecret", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
潘 |
37 |
@ExcelProperty("ClientSecret") |
c7f709
|
38 |
private String clientSecret; |
L |
39 |
|
be2308
|
40 |
@Schema(description = "用户名", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
潘 |
41 |
@ExcelProperty("用户名") |
c7f709
|
42 |
private String username; |
L |
43 |
|
be2308
|
44 |
@Schema(description = "密码", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
潘 |
45 |
@ExcelProperty("密码") |
c7f709
|
46 |
private String password; |
L |
47 |
|
be2308
|
48 |
@Schema(description = "token", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
潘 |
49 |
@ExcelProperty("token") |
c7f709
|
50 |
private String token; |
L |
51 |
|
be2308
|
52 |
@Schema(description = "过期时间", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
潘 |
53 |
@ExcelProperty("过期时间") |
c7f709
|
54 |
private Date expireTime; |
L |
55 |
|
|
56 |
@Schema(description = "更新时间", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
57 |
@ExcelProperty("更新时间") |
|
58 |
private Date updateTime; |
|
59 |
} |