Lius
2024-10-31 7d8887e36acb71ee20bf2f55170571b3fa7621b7
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
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.io.Serializable;
import java.util.Date;
 
/**
 * @Description: 设备电流统计
 * @Author: lius
 * @Date: 2024-07-16
 * @Version: V1.0
 */
@Data
@TableName("equipment_electric_statistical")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value = "equipment_electric_statistical对象", description = "设备电流统计")
public class EquipmentElectricStatistical implements Serializable {
 
    private static final long serialVersionUID = -7635486686927678464L;
 
    /**
     * 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;
    /**
     * 坐标类型 1,X;2,Y;3,Z;4,A;5,B;
     */
    @Excel(name = "坐标类型", width = 15)
    @ApiModelProperty(value = "坐标类型 1,X;2,Y;3,Z;4,A;5,B;")
    private Integer axistype;
    /**
     * 坐标值
     */
    @Excel(name = "坐标值", width = 15)
    @ApiModelProperty(value = "坐标值")
    private String axisvalue;
    /**
     * 最大电流值
     */
    @Excel(name = "最大电流", width = 15)
    @ApiModelProperty(value = "最大电流")
    private String electricvalue;
    /**
     * 对应主轴负载
     */
    @Excel(name = "主轴负载", width = 15)
    @ApiModelProperty(value = "主轴负载")
    private String spindleload;
    /**
     * 对应主轴转速
     */
    @Excel(name = "主轴转速", width = 15)
    @ApiModelProperty(value = "主轴转速")
    private String spindlespeed;
    /**
     * 最大电流的采集时间
     */
    @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 electrictime;
    /**
     * 最大电流对应坐标的采集时间
     */
    @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 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 createdate;
}