src/main/kotlin/cn/flightfeather/supervision/domain/ds1/entity/DustDataResult.java
@@ -19,7 +19,7 @@
     * 场景名称
     */
    @Column(name = "DR_Scene_Name")
    private Integer drSceneName;
    private String drSceneName;
    /**
     * 记录月份
@@ -106,7 +106,7 @@
     *
     * @return DR_Scene_Name - 场景名称
     */
    public Integer getDrSceneName() {
    public String getDrSceneName() {
        return drSceneName;
    }
@@ -115,8 +115,8 @@
     *
     * @param drSceneName 场景名称
     */
    public void setDrSceneName(Integer drSceneName) {
        this.drSceneName = drSceneName;
    public void setDrSceneName(String drSceneName) {
        this.drSceneName = drSceneName == null ? null : drSceneName.trim();
    }
    /**