25 lines
680 B
Java
25 lines
680 B
Java
package com.yj.earth.design;
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
@Data
|
|
public class TsPlan {
|
|
@Schema(description = "主键")
|
|
private String id;
|
|
@Schema(description = "方案名称")
|
|
private String name;
|
|
@Schema(description = "方案描述")
|
|
private String desc;
|
|
@Schema(description = "创建人")
|
|
private String createdBy;
|
|
@Schema(description = "仿真开始时间")
|
|
private LocalDateTime simulationStartTime;
|
|
@Schema(description = "创建时间")
|
|
private LocalDateTime createdAt;
|
|
@Schema(description = "更新时间")
|
|
private LocalDateTime updatedAt;
|
|
}
|