自动化立体仓库 - WMS系统
#1
dubin
2025-11-20 0ee5fb34623360eb8b43a8a032023890de1401d8
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;