潘志宝
2024-12-03 0ee7939bb9d8c0d2996d9c9262010423cb786ec6
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.iailab.module.system.controller.admin.tenant.vo.packages;
 
import com.iailab.framework.common.pojo.PageParam;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.time.LocalDateTime;
import java.util.List;
 
import static com.iailab.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
 
@Schema(description = "管理后台 - 租户套餐分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class TenantPackagePageReqVO extends PageParam {
 
    @Schema(description = "套餐名", example = "VIP")
    private String name;
 
    @Schema(description = "状态", example = "1")
    private Integer status;
 
    @Schema(description = "套餐图标", example = "http://localhost/xxx")
    private String icon;
 
    @Schema(description = "套餐标签", example = "模型管理")
    private List<String> labels;
 
    @Schema(description = "描述", example = "好")
    private String description;
 
    @Schema(description = "备注", example = "好")
    private String remark;
 
    @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
    @Schema(description = "创建时间")
    private LocalDateTime[] createTime;
}