47 lines
1.2 KiB
Java
47 lines
1.2 KiB
Java
package com.hivekion.environment.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.hivekion.common.entity.SearchInputVo;
|
|
import io.swagger.annotations.ApiModel;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* <p>
|
|
*
|
|
* </p>
|
|
*
|
|
* @author liDongYu
|
|
* @since 2025-08-28
|
|
*/
|
|
@TableName("tbl_simtool_weather")
|
|
@ApiModel(value = "SimtoolWeather对象", description = "")
|
|
@Data
|
|
public class SimtoolWeather extends SearchInputVo {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private Integer id;
|
|
|
|
private String guid;
|
|
|
|
private String startTime;
|
|
@TableField(value = "duration_time")
|
|
private String durationTime;
|
|
private String weather;
|
|
@TableField(value = "wind_direction")
|
|
private String windDirection;
|
|
@TableField(value = "wind_power")
|
|
private String windPower;
|
|
@TableField(value = "wind_speed")
|
|
private String windSpeed;
|
|
@TableField(value = "scenario_uuid")
|
|
private String scenarioUuid;
|
|
@TableField(exist = false)
|
|
private String status;
|
|
|
|
}
|