wlzboy
5 天以前 cfe0b79fbea0fb1d7a5a796e71ada7d3b7812046
ruoyi-system/src/main/java/com/ruoyi/system/domain/SysTaskVehicle.java
@@ -58,6 +58,14 @@
    @Excel(name = "归属部门")
    private String deptName;
    /** 任务编号 */
    @Excel(name = "任务编号")
    private String taskCode;
    /** 任务类型 */
    @Excel(name = "任务类型")
    private String taskType;
    public void setId(Long id) {
        this.id = id;
    }
@@ -146,6 +154,22 @@
        return deptName;
    }
    public void setTaskCode(String taskCode) {
        this.taskCode = taskCode;
    }
    public String getTaskCode() {
        return taskCode;
    }
    public void setTaskType(String taskType) {
        this.taskType = taskType;
    }
    public String getTaskType() {
        return taskType;
    }
    @Override
    public String toString() {
        return "SysTaskVehicle{" +
@@ -160,6 +184,8 @@
                ", vehicleBrand='" + vehicleBrand + '\'' +
                ", vehicleModel='" + vehicleModel + '\'' +
                ", deptName='" + deptName + '\'' +
                ", taskCode='" + taskCode + '\'' +
                ", taskType='" + taskType + '\'' +
                '}';
    }
}