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;
|
}
|