提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.system.controller.admin.tenant.vo.packages; |
H |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
import java.time.LocalDateTime; |
|
7 |
import java.util.Set; |
|
8 |
|
|
9 |
@Schema(description = "管理后台 - 租户套餐 Response VO") |
|
10 |
@Data |
|
11 |
public class TenantPackageRespVO { |
|
12 |
|
|
13 |
@Schema(description = "套餐编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
14 |
private Long id; |
|
15 |
|
|
16 |
@Schema(description = "套餐名", requiredMode = Schema.RequiredMode.REQUIRED, example = "VIP") |
|
17 |
private String name; |
|
18 |
|
|
19 |
@Schema(description = "状态,参见 CommonStatusEnum 枚举", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
|
20 |
private Integer status; |
|
21 |
|
|
22 |
@Schema(description = "备注", example = "好") |
|
23 |
private String remark; |
|
24 |
|
|
25 |
@Schema(description = "关联的菜单编号", requiredMode = Schema.RequiredMode.REQUIRED) |
|
26 |
private Set<Long> menuIds; |
|
27 |
|
|
28 |
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
|
29 |
private LocalDateTime createTime; |
|
30 |
|
|
31 |
} |