1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.iailab.module.data.plan.item.vo;
|
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Data;
|
| /**
| * @author PanZhibao
| * @Description
| * @createTime 2024年11月02日
| */
| @Schema(description = "数据平台 - ")
| @Data
| public class PlanItemDataVO {
|
| private String startTime;
|
| private String endTime;
| }
|
|