From c2fccb01b972176dc3da5a497b5e904025e9e98d Mon Sep 17 00:00:00 2001 From: bsw215583320 <baoshiwei121@163.com> Date: 星期二, 16 四月 2024 15:06:51 +0800 Subject: [PATCH] Merge branch 'master' of http://210.22.126.130:1111/r/dry/herb --- jeecg-module-dry/jeecg-module-dry-api/src/main/java/org/jeecg/modules/dry/entity/DryOrderTrend.java | 96 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 96 insertions(+), 0 deletions(-) diff --git a/jeecg-module-dry/jeecg-module-dry-api/src/main/java/org/jeecg/modules/dry/entity/DryOrderTrend.java b/jeecg-module-dry/jeecg-module-dry-api/src/main/java/org/jeecg/modules/dry/entity/DryOrderTrend.java new file mode 100644 index 0000000..01a2968 --- /dev/null +++ b/jeecg-module-dry/jeecg-module-dry-api/src/main/java/org/jeecg/modules/dry/entity/DryOrderTrend.java @@ -0,0 +1,96 @@ +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 fanTemp; + /**椋庣娓╁害*/ + @Excel(name = "椋庣娓╁害", width = 15) + @ApiModelProperty(value = "椋庣娓╁害") + private Double bellowsTemp; + /**鏃堕棿*/ + @Excel(name = "鏃堕棿", width = 15, format = "yyyy-MM-dd HH:mm:ss") + @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") + @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") + @ApiModelProperty(value = "鏃堕棿") + private Date tim; + + /**鎬绘椂闂�*/ + @Excel(name = "鎬绘椂闂�", width = 15) + @ApiModelProperty(value = "鎬绘椂闂�") + private Integer totalTime; + /**骞茬嚗鏃堕棿s*/ + @Excel(name = "骞茬嚗鏃堕棿s", width = 15) + @ApiModelProperty(value = "骞茬嚗鏃堕棿s") + private Integer dryTime; + /**缈绘枡娆℃暟*/ + @Excel(name = "缈绘枡娆℃暟", width = 15) + @ApiModelProperty(value = "缈绘枡娆℃暟") + private Integer turn; + /**椋庢満棰戠巼*/ + @Excel(name = "椋庢満棰戠巼", width = 15) + @ApiModelProperty(value = "椋庢満棰戠巼") + private Double fanFrequency; + /**瀹炴椂閲嶉噺*/ + @Excel(name = "瀹炴椂閲嶉噺", width = 15) + @ApiModelProperty(value = "瀹炴椂閲嶉噺") + private Double weight; + /**鐑1/鍐烽0*/ + @Excel(name = "鐑1/鍐烽0", width = 15) + @ApiModelProperty(value = "鐑1/鍐烽0") + private Boolean wind; + /**绉熸埛id*/ + @Excel(name = "绉熸埛id", width = 15) + @ApiModelProperty(value = "绉熸埛id") + private Integer tenantId; + + + /**钂告苯娑堣��*/ + @ApiModelProperty(value = "钂告苯娑堣��") + private Double steam; + + /**鐢佃兘娑堣��*/ + @ApiModelProperty(value = "鐢佃兘娑堣��") + private Double watt; +} -- Gitblit v1.9.3