wlzboy
3 天以前 8cb5d3440208a3be3e772e65f1bd0ec63031ba62
ruoyi-system/src/main/java/com/ruoyi/system/domain/SysTaskVehicle.java
@@ -54,6 +54,18 @@
    @Excel(name = "车辆型号")
    private String vehicleModel;
    /** 归属部门名称 */
    @Excel(name = "归属部门")
    private String deptName;
    /** 任务编号 */
    @Excel(name = "任务编号")
    private String taskCode;
    /** 任务类型 */
    @Excel(name = "任务类型")
    private String taskType;
    public void setId(Long id) {
        this.id = id;
    }
@@ -134,6 +146,30 @@
        return vehicleModel;
    }
    public void setDeptName(String deptName) {
        this.deptName = deptName;
    }
    public String getDeptName() {
        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{" +
@@ -147,6 +183,9 @@
                ", vehicleType='" + vehicleType + '\'' +
                ", vehicleBrand='" + vehicleBrand + '\'' +
                ", vehicleModel='" + vehicleModel + '\'' +
                ", deptName='" + deptName + '\'' +
                ", taskCode='" + taskCode + '\'' +
                ", taskType='" + taskType + '\'' +
                '}';
    }
}