网上演练贵港万达广场(人员密集)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.5 KiB

4 years ago
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class FireCarEngine
{
//消防车力量ID
public int Id;
#region
/*
* 0:
* 1:
* 2:
* 3:/
* 4:
* 5:
* 6:
* 7:
* 8:
* 9:
* 10:
* 11:
* 12:
* 13:
* 14:
* 15:
* 16:
* 17:
* 18:
* 19:
* 20:
* 21:
* 22:
* 23:
* 24:
* 25:
* 26:
* 27:
* 28:
* 29:
* 30:
* */
#endregion
//车辆类型
public int Type;
//车辆类型名
public string TypeName;
//车辆显示名(如“10吨位水罐车”)
public string DisplayName;
//载人数
public int? PassengerCapacity;/*选填*/
//载水量
public int? WaterAmount;
//载泡沫量
public int? FoamAmount;
//载干粉量
public int? DryPowderAmount;
//登高/举高车,高喷车,云梯车伸臂高度
public int? Height;
//是否可用
public int IsActive;
//所属组织机构id
public int OrganizationId;
//所属组织机构名
public string OrganizationName;
}