干燥机配套车间生产管理系统/云平台服务端
baoshiwei
2023-03-16 22db0b6b9b3a5905c1793107c2c1c2a00b265091
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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;
}