工业互联网平台2.0版本后端代码
潘志宝
2024-11-07 ccaf0da493e5d4513852f27d843637cd6ecb4784
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;
}