package org.jeecg.modules.mdc.entity;
|
|
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;
|
|
/**
|
* @Description: 设备坐标值表
|
* @Author: lius
|
* @Date: 2024-07-18
|
* @Version: V1.0
|
*/
|
@Data
|
@TableName("CurrentXYZ_History")
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@ApiModel(value = "CurrentXYZ_History对象", description = "设备坐标值表")
|
public class CurrentXYZHistory {
|
|
/**
|
* equipmentid
|
*/
|
@ApiModelProperty(value = "equipmentid")
|
private String equipmentid;
|
/**
|
* collecttime
|
*/
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@ApiModelProperty(value = "collecttime")
|
private java.util.Date collecttime;
|
/**
|
* xcurrent
|
*/
|
@ApiModelProperty(value = "xcurrent")
|
private String xcurrent;
|
/**
|
* ycurrent
|
*/
|
@ApiModelProperty(value = "ycurrent")
|
private String ycurrent;
|
/**
|
* zcurrent
|
*/
|
@ApiModelProperty(value = "zcurrent")
|
private String zcurrent;
|
/**
|
* acurrent
|
*/
|
@ApiModelProperty(value = "acurrent")
|
private String acurrent;
|
/**
|
* bcurrent
|
*/
|
@ApiModelProperty(value = "bcurrent")
|
private String bcurrent;
|
}
|