自动化立体仓库 - WMS系统
#1
dubin
2025-11-27 031caa5cb14a709702f942aede37f6403d436650
src/main/java/com/zy/asrs/entity/BasSensor.java
@@ -38,13 +38,13 @@
     * 传感器温度
     */
    @ApiModelProperty(value= "传感器温度")
    private String temperature;
    private Double temperature;
    /**
     * 传感器湿度
     */
    @ApiModelProperty(value= "传感器湿度")
    private String humidity;
    private Double humidity;
    /**
     * 创建时间
@@ -54,7 +54,7 @@
    public BasSensor() {}
    public BasSensor(Double number,String location,String temperature,String humidity) {
    public BasSensor(Double number,String location,Double temperature,Double humidity) {
        this.number = number;
        this.location = location;
        this.temperature = temperature;