package org.jeecg.modules.dry.vo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.ToString;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
@Data
|
@ToString
|
public class DryOrderTrendVo {
|
|
/**id*/
|
@ApiModelProperty(value = "id")
|
private String id;
|
/**工单*/
|
@ApiModelProperty(value = "工单号")
|
private String orderId;
|
/**含水率*/
|
@ApiModelProperty(value = "含水率", example = "33")
|
private Double moisture;
|
/**温度*/
|
@ApiModelProperty(value = "温度", example = "70")
|
private Double temp;
|
/**时间*/
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@ApiModelProperty(value = "时间", example = "2023-03-13 12:00:00")
|
private Date tim;
|
/**租户id*/
|
@ApiModelProperty(value = "租户id", example = "1000")
|
private Integer tenantId;
|
}
|