‘liusuyi’
2024-02-29 133098a6f81de1de99cb0a5c829b7d1b39105e84
ard-work/src/main/java/com/ruoyi/inspect/domain/ArdVideoInspectTask.java
@@ -32,7 +32,6 @@
    private String endTime;
    /** 重复周期 */
    @Excel(name = "重复周期")
    private String repeatPeriod;
    /** 巡检模式 */
@@ -47,25 +46,21 @@
    @Excel(name = "相机id")
    private String cameraId;
    /** 当前步骤id */
    @Excel(name = "当前步骤id")
    private String currentStepId;
    /** 当前步骤开始时间 */
    @Excel(name = "当前步骤开始时间")
    private String currentStepStartTime;
    /** 通道 */
    @Excel(name = "通道")
    private String channel;
    /** 通道号 */
    @Excel(name = "通道号")
    private Integer channel;
    /** 部门id */
    @Excel(name = "部门id")
    private String deptId;
    /** 用户id */
    @Excel(name = "用户id")
    private String userId;
    /** 当前步骤 */
    private String currentStepId;
    /** 当前步骤开始时间 */
    private String currentStepStartTime;
    /** 视频巡检步骤信息 */
    private List<ArdVideoInspectTaskStep> ardVideoInspectTaskStepList;
@@ -142,30 +137,12 @@
    {
        return cameraId;
    }
    public void setCurrentStepId(String currentStepId)
    {
        this.currentStepId = currentStepId;
    }
    public String getCurrentStepId()
    {
        return currentStepId;
    }
    public void setCurrentStepStartTime(String currentStepStartTime)
    {
        this.currentStepStartTime = currentStepStartTime;
    }
    public String getCurrentStepStartTime()
    {
        return currentStepStartTime;
    }
    public void setChannel(String channel)
    public void setChannel(Integer channel)
    {
        this.channel = channel;
    }
    public String getChannel()
    public Integer getChannel()
    {
        return channel;
    }
@@ -186,6 +163,24 @@
    public String getUserId() 
    {
        return userId;
    }
    public void setCurrentStepId(String currentStepId)
    {
        this.currentStepId = currentStepId;
    }
    public String getCurrentStepId()
    {
        return currentStepId;
    }
    public void setCurrentStepStartTime(String currentStepStartTime)
    {
        this.currentStepStartTime = currentStepStartTime;
    }
    public String getCurrentStepStartTime()
    {
        return currentStepStartTime;
    }
    public List<ArdVideoInspectTaskStep> getArdVideoInspectTaskStepList()
@@ -209,15 +204,15 @@
            .append("inspectMode", getInspectMode())
            .append("menualSwitch", getMenualSwitch())
            .append("createBy", getCreateBy())
            .append("cameraId", getCameraId())
            .append("currentStepId", getCurrentStepId())
            .append("currentStepStartTime", getCurrentStepStartTime())
            .append("channel", getChannel())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .append("cameraId", getCameraId())
            .append("channel", getChannel())
            .append("deptId", getDeptId())
            .append("userId", getUserId())
            .append("currentStepId", getCurrentStepId())
            .append("currentStepStartTime", getCurrentStepStartTime())
            .append("ardVideoInspectTaskStepList", getArdVideoInspectTaskStepList())
            .toString();
    }