| | |
| | | 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 = "状态", 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; |
| | | |