Lius
2024-07-16 3ebadd4deaf6c6d0aaa82a5d90349ff797d350fa
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package org.jeecg.modules.mdc.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 * @Description: 设备负载
 * @Author: lius
 * @Date: 2024-07-16
 * @Version: V1.0
 */
@Data
@TableName("equipment_spindle_statistical")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value = "equipment_spindle_statistical对象", description = "设备负载")
public class EquipmentSpindleStatistical {
 
    private static final long serialVersionUID = 685063684783288830L;
 
    /**
     * id
     */
    @TableId(type = IdType.ASSIGN_ID)
    private String id;
    /**
     * 设备编号
     */
    @Excel(name = "设备编号", width = 15)
    @ApiModelProperty(value = "设备编号")
    private String equipmentid;
    /**
     * 设备名称
     */
    @Excel(name = "设备名称", width = 15)
    @ApiModelProperty(value = "设备名称")
    private String equipmentname;
    /**
     * 主轴负载
     */
    @Excel(name = "主轴负载", width = 15)
    @ApiModelProperty(value = "主轴负载")
    private String spindleload;
    /**
     * 主轴转速
     */
    @Excel(name = "主轴转速", width = 15)
    @ApiModelProperty(value = "主轴转速")
    private String spindlespeed;
    /**
     * X坐标值
     */
    @Excel(name = "X坐标值", width = 15)
    @ApiModelProperty(value = "X坐标值")
    private String axisx;
    /**
     * Y坐标值
     */
    @Excel(name = "Y坐标值", width = 15)
    @ApiModelProperty(value = "Y坐标值")
    private String axisy;
    /**
     * Z坐标值
     */
    @Excel(name = "Z坐标值", width = 15)
    @ApiModelProperty(value = "Z坐标值")
    private String axisz;
    /**
     * A坐标值
     */
    @Excel(name = "A坐标值", width = 15)
    @ApiModelProperty(value = "A坐标值")
    private String axisa;
    /**
     * B坐标值
     */
    @Excel(name = "B坐标值", width = 15)
    @ApiModelProperty(value = "B坐标值")
    private String axisb;
    /**
     * 主轴负载采集时间
     */
    @Excel(name = "主轴负载采集时间", width = 20, 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 spindletime;
    /**
     * 坐标采集时间
     */
    @Excel(name = "坐标采集时间", width = 20, 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 axistime;
    /**
     * 统计日期
     */
    @Excel(name = "统计日期", width = 20, 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 createdate;
}