|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package cn.estsh.i3plus.pojo.mes.bean;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
@ -11,6 +12,7 @@ import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -49,4 +51,38 @@ public class MesBoardEquDetail extends BaseBean implements Serializable {
|
|
|
|
|
@Column(name = "Y_AXES")
|
|
|
|
|
@ApiParam(value = "纵坐标")
|
|
|
|
|
private Double yAxes = 0d;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("设备状态")
|
|
|
|
|
private Integer equStatus;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("颜色")
|
|
|
|
|
private String color;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("xAxes")
|
|
|
|
|
public Double getxAxes() {
|
|
|
|
|
return xAxes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setxAxes(Double xAxes) {
|
|
|
|
|
this.xAxes = xAxes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@JsonProperty("yAxes")
|
|
|
|
|
public Double getyAxes() {
|
|
|
|
|
return yAxes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setyAxes(Double yAxes) {
|
|
|
|
|
this.yAxes = yAxes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public double getXAxes() {
|
|
|
|
|
return this.xAxes == null ? 0.0d : this.xAxes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public double getYAxes() {
|
|
|
|
|
return this.yAxes == null ? 0.0d : this.yAxes;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|