zhangjian
2023-05-30 690514a1445d8925f62f9c73e9ed563f647a00c7
ard-work/src/main/java/com/ruoyi/inspect/domain/ArdVideoInspectTask.java
@@ -49,11 +49,15 @@
    /** 通道号 */
    @Excel(name = "通道号")
    private String channel;
    private Integer channel;
    /** 当前步骤 */
    @Excel(name = "当前步骤")
    private String currentStepId;
    /** 当前步骤开始时间 */
    @Excel(name = "当前步骤开始时间")
    private String currentStepStartTime;
    /** 部门id */
    @Excel(name = "部门id")
@@ -62,10 +66,6 @@
    /** 用户id */
    @Excel(name = "用户id")
    private String userId;
    /** 当前步骤开始时间 */
    @Excel(name = "当前步骤开始时间")
    private String currentStopStartTime;
    /** 视频巡检步骤信息 */
    private List<ArdVideoInspectTaskStep> ardVideoInspectTaskStepList;
@@ -142,12 +142,12 @@
    {
        return cameraId;
    }
    public void setChannel(String channel)
    public void setChannel(Integer channel)
    {
        this.channel = channel;
    }
    public String getChannel()
    public Integer getChannel()
    {
        return channel;
    }
@@ -159,6 +159,15 @@
    public String getCurrentStepId() 
    {
        return currentStepId;
    }
    public void setCurrentStepStartTime(String currentStepStartTime)
    {
        this.currentStepStartTime = currentStepStartTime;
    }
    public String getCurrentStepStartTime()
    {
        return currentStepStartTime;
    }
    public void setDeptId(String deptId) 
    {
@@ -177,15 +186,6 @@
    public String getUserId() 
    {
        return userId;
    }
    public void setCurrentStopStartTime(String currentStopStartTime)
    {
        this.currentStopStartTime = currentStopStartTime;
    }
    public String getCurrentStopStartTime()
    {
        return currentStopStartTime;
    }
    public List<ArdVideoInspectTaskStep> getArdVideoInspectTaskStepList()
@@ -212,12 +212,12 @@
            .append("cameraId", getCameraId())
            .append("channel", getChannel())
            .append("currentStepId", getCurrentStepId())
            .append("currentStepStartTime", getCurrentStepStartTime())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .append("deptId", getDeptId())
            .append("userId", getUserId())
            .append("currentStopStartTime", getCurrentStopStartTime())
            .append("ardVideoInspectTaskStepList", getArdVideoInspectTaskStepList())
            .toString();
    }