45 lines
1.2 KiB
Java
45 lines
1.2 KiB
Java
package com.hivekion.statistic.bean;
|
|
|
|
import com.hivekion.baseData.entity.Fightpowerstaff;
|
|
import com.hivekion.baseData.entity.OrgSupplier;
|
|
import com.hivekion.scenario.entity.ScenarioOrgPost;
|
|
import com.hivekion.scenario.entity.ScenarioResource;
|
|
import com.hivekion.scenario.entity.ScenarioTask;
|
|
import com.hivekion.supplier.entity.SupplierRequest;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class ScenarioInfo implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private List<ScenarioOrgPost> orgPostList;
|
|
|
|
private List<Fightpowerstaff> staffList;
|
|
|
|
private List<OrgSupplier> suppliers;
|
|
|
|
private List<ScenarioTask> scenarioTasks;
|
|
|
|
private List<SupplierRequest> supplierRequests;
|
|
|
|
private TeamInfo team = new TeamInfo();
|
|
private PersonInfo person = new PersonInfo();
|
|
//弹药
|
|
private AmmunitionInfo ammunition = new AmmunitionInfo();
|
|
//食品
|
|
private FoodInfo food = new FoodInfo();
|
|
//水
|
|
private WaterInfo water = new WaterInfo();
|
|
//油
|
|
private FuelInfo fuel = new FuelInfo();
|
|
//药材
|
|
private MedicalInfo medical = new MedicalInfo();
|
|
|
|
private ScenarioResource sdzy;
|
|
|
|
}
|