zhangjian
2023-05-30 4f540e1253a99e33bf76be60ec5fdd02ca3123d4
ard-work/src/main/java/com/ruoyi/inspect/domain/ArdVideoInspectTask.java
@@ -47,17 +47,13 @@
    @Excel(name = "相机id")
    private String cameraId;
    /** 当前步骤id */
    @Excel(name = "当前步骤id")
    private String currentStepId;
    /** 当前步骤开始时间 */
    @Excel(name = "当前步骤开始时间")
    private String currentStepStartTime;
    /** 通道 */
    @Excel(name = "通道")
    /** 通道号 */
    @Excel(name = "通道号")
    private String channel;
    /** 当前步骤 */
    @Excel(name = "当前步骤")
    private String currentStepId;
    /** 部门id */
    @Excel(name = "部门id")
@@ -66,6 +62,10 @@
    /** 用户id */
    @Excel(name = "用户id")
    private String userId;
    /** 当前步骤开始时间 */
    @Excel(name = "当前步骤开始时间")
    private String currentStopStartTime;
    /** 视频巡检步骤信息 */
    private List<ArdVideoInspectTaskStep> ardVideoInspectTaskStepList;
@@ -142,24 +142,6 @@
    {
        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) 
    {
        this.channel = channel;
@@ -168,6 +150,15 @@
    public String getChannel() 
    {
        return channel;
    }
    public void setCurrentStepId(String currentStepId)
    {
        this.currentStepId = currentStepId;
    }
    public String getCurrentStepId()
    {
        return currentStepId;
    }
    public void setDeptId(String deptId) 
    {
@@ -186,6 +177,15 @@
    public String getUserId() 
    {
        return userId;
    }
    public void setCurrentStopStartTime(String currentStopStartTime)
    {
        this.currentStopStartTime = currentStopStartTime;
    }
    public String getCurrentStopStartTime()
    {
        return currentStopStartTime;
    }
    public List<ArdVideoInspectTaskStep> getArdVideoInspectTaskStepList()
@@ -210,14 +210,14 @@
            .append("menualSwitch", getMenualSwitch())
            .append("createBy", getCreateBy())
            .append("cameraId", getCameraId())
            .append("currentStepId", getCurrentStepId())
            .append("currentStepStartTime", getCurrentStepStartTime())
            .append("channel", getChannel())
            .append("currentStepId", getCurrentStepId())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .append("deptId", getDeptId())
            .append("userId", getUserId())
            .append("currentStopStartTime", getCurrentStopStartTime())
            .append("ardVideoInspectTaskStepList", getArdVideoInspectTaskStepList())
            .toString();
    }