Commit 0e170f94 authored by maoying's avatar maoying

手机端下载装备信息添加默认值

parent a7984014
...@@ -4,6 +4,7 @@ import com.yeejoin.equipmanage.common.entity.*; ...@@ -4,6 +4,7 @@ import com.yeejoin.equipmanage.common.entity.*;
import com.yeejoin.equipmanage.common.vo.BuildingTreeVo; import com.yeejoin.equipmanage.common.vo.BuildingTreeVo;
import lombok.Data; import lombok.Data;
import java.util.ArrayList;
import java.util.List; import java.util.List;
/** /**
...@@ -18,47 +19,47 @@ public class AppDownloadVO { ...@@ -18,47 +19,47 @@ public class AppDownloadVO {
/** /**
* 装备 * 装备
*/ */
private List<DownloadEquipmentDataVO> downloadEquipmentDatas; private List<DownloadEquipmentDataVO> downloadEquipmentDatas = new ArrayList<>();
/** /**
* 车辆 * 车辆
*/ */
private List<Car> downloadCarDatas; private List<Car> downloadCarDatas = new ArrayList<>();
/** /**
* 建筑 * 建筑
*/ */
private List<BuildingTreeVo> buildTree; private List<BuildingTreeVo> buildTree = new ArrayList<>();
/** /**
*设备对应性能指标 *设备对应性能指标
*/ */
private List<EquipmentSpecificIndex> equipmentSpecificIndexs; private List<EquipmentSpecificIndex> equipmentSpecificIndexs = new ArrayList<>();
/** /**
*性能指标模板 *性能指标模板
*/ */
private List<EquipmentIndex> equipmentIndex; private List<EquipmentIndex> equipmentIndex = new ArrayList<>();
/** /**
*货位 *货位
*/ */
private List<WarehouseStructure> warehouseStructure; private List<WarehouseStructure> warehouseStructure = new ArrayList<>();
/** /**
* 车载装备 * 车载装备
*/ */
private List<EquipmentOnCar> equipmentOnCar; private List<EquipmentOnCar> equipmentOnCar = new ArrayList<>();
/** /**
* 车载灭火药剂 * 车载灭火药剂
*/ */
private List<ExtinguishantOnCar> extinguishantOnCar; private List<ExtinguishantOnCar> extinguishantOnCar = new ArrayList<>();
/** /**
*报废原因 *报废原因
*/ */
private List<SystemDic> reason; private List<SystemDic> reason = new ArrayList<>();
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment