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