‘liusuyi’
2023-11-03 0fcf388ca549a7c35d901e386598b2705eb6a52d
ard-work/src/main/java/com/ruoyi/inspect/domain/ArdVideoInspectTask.java
@@ -32,7 +32,6 @@
    private String endTime;
    /** 重复周期 */
    @Excel(name = "重复周期")
    private String repeatPeriod;
    /** 巡检模式 */
@@ -49,23 +48,19 @@
    /** 通道号 */
    @Excel(name = "通道号")
    private String channel;
    /** 当前步骤 */
    @Excel(name = "当前步骤")
    private String currentStepId;
    private Integer channel;
    /** 部门id */
    @Excel(name = "部门id")
    private String deptId;
    /** 用户id */
    @Excel(name = "用户id")
    private String userId;
    /** 当前步骤 */
    private String currentStepId;
    /** 当前步骤开始时间 */
    @Excel(name = "当前步骤开始时间")
    private String currentStopStartTime;
    private String currentStepStartTime;
    /** 视频巡检步骤信息 */
    private List<ArdVideoInspectTaskStep> ardVideoInspectTaskStepList;
@@ -142,23 +137,14 @@
    {
        return cameraId;
    }
    public void setChannel(String channel)
    public void setChannel(Integer channel)
    {
        this.channel = channel;
    }
    public String getChannel()
    public Integer getChannel()
    {
        return channel;
    }
    public void setCurrentStepId(String currentStepId)
    {
        this.currentStepId = currentStepId;
    }
    public String getCurrentStepId()
    {
        return currentStepId;
    }
    public void setDeptId(String deptId) 
    {
@@ -178,14 +164,23 @@
    {
        return userId;
    }
    public void setCurrentStopStartTime(String currentStopStartTime)
    public void setCurrentStepId(String currentStepId)
    {
        this.currentStopStartTime = currentStopStartTime;
        this.currentStepId = currentStepId;
    }
    public String getCurrentStopStartTime()
    public String getCurrentStepId()
    {
        return currentStopStartTime;
        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("channel", getChannel())
            .append("currentStepId", getCurrentStepId())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .append("cameraId", getCameraId())
            .append("channel", getChannel())
            .append("deptId", getDeptId())
            .append("userId", getUserId())
            .append("currentStopStartTime", getCurrentStopStartTime())
            .append("currentStepId", getCurrentStepId())
            .append("currentStepStartTime", getCurrentStepStartTime())
            .append("ardVideoInspectTaskStepList", getArdVideoInspectTaskStepList())
            .toString();
    }