package org.jeecg.modules.dry.entity;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import org.springframework.format.annotation.DateTimeFormat;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
/**
|
* @Description: 工单过程趋势
|
* @Author: jeecg-boot
|
* @Date: 2023-03-08
|
* @Version: V1.0
|
*/
|
@Data
|
@TableName("dry_order_trend")
|
@Accessors(chain = true)
|
@EqualsAndHashCode(callSuper = false)
|
@ApiModel(value="dry_order_trend对象", description="工单过程趋势")
|
public class DryOrderTrend implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**id*/
|
@TableId(type = IdType.ASSIGN_ID)
|
@ApiModelProperty(value = "id")
|
private String id;
|
/**工单*/
|
@Excel(name = "工单", width = 15)
|
@ApiModelProperty(value = "工单")
|
private String orderId;
|
/**含水率*/
|
@Excel(name = "含水率", width = 15)
|
@ApiModelProperty(value = "含水率")
|
private Double moisture;
|
/**温度*/
|
@Excel(name = "温度", width = 15)
|
@ApiModelProperty(value = "温度")
|
private Double temp;
|
/**时间*/
|
@Excel(name = "时间", width = 15, format = "yyyy-MM-dd")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
@ApiModelProperty(value = "时间")
|
private Date tim;
|
/**租户id*/
|
@Excel(name = "租户id", width = 15)
|
@ApiModelProperty(value = "租户id")
|
private Integer tenantId;
|
}
|