提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.system.controller.admin.tenant.vo.packages; |
H |
2 |
|
|
3 |
import com.iailab.framework.common.pojo.PageParam; |
|
4 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
5 |
import lombok.Data; |
|
6 |
import lombok.EqualsAndHashCode; |
|
7 |
import lombok.ToString; |
|
8 |
import org.springframework.format.annotation.DateTimeFormat; |
|
9 |
|
|
10 |
import java.time.LocalDateTime; |
874287
|
11 |
import java.util.List; |
e7c126
|
12 |
|
H |
13 |
import static com.iailab.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND; |
|
14 |
|
|
15 |
@Schema(description = "管理后台 - 租户套餐分页 Request VO") |
|
16 |
@Data |
|
17 |
@EqualsAndHashCode(callSuper = true) |
|
18 |
@ToString(callSuper = true) |
|
19 |
public class TenantPackagePageReqVO extends PageParam { |
|
20 |
|
|
21 |
@Schema(description = "套餐名", example = "VIP") |
|
22 |
private String name; |
|
23 |
|
|
24 |
@Schema(description = "状态", example = "1") |
|
25 |
private Integer status; |
|
26 |
|
874287
|
27 |
@Schema(description = "套餐图标", example = "http://localhost/xxx") |
H |
28 |
private String icon; |
|
29 |
|
|
30 |
@Schema(description = "套餐标签", example = "模型管理") |
|
31 |
private List<String> labels; |
|
32 |
|
|
33 |
@Schema(description = "描述", example = "好") |
|
34 |
private String description; |
|
35 |
|
e7c126
|
36 |
@Schema(description = "备注", example = "好") |
H |
37 |
private String remark; |
|
38 |
|
|
39 |
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
|
40 |
@Schema(description = "创建时间") |
|
41 |
private LocalDateTime[] createTime; |
|
42 |
} |