1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.iailab.module.data.plan.category.vo;
|
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Data;
| import lombok.ToString;
|
| /**
| * @author PanZhibao
| * @Description
| * @createTime 2024年11月01日
| */
| @Schema(description = "数据服务 - 计划分类分页 Request VO")
| @Data
| @ToString(callSuper = true)
| public class PlanItemCategoryReqVO {
|
| private String label;
| }
|
|