using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { /// /// 赛鼎月报信息项 --5、本月大型、特种设备投入情况 /// public class SeDinMonthReport5Item { /// /// ID /// public string MonthReport5Id { get; set; } /// /// 月报ID /// public string MonthReportId { get; set; } /// /// 单位名称 /// public string UnitName { get; set; } /// /// 特种设备-汽车吊 /// public int? T01 { get; set; } /// /// 特种设备-履带吊 /// public int? T02 { get; set; } /// /// 特种设备-塔吊 /// public int? T03 { get; set; } /// /// 特种设备-门式起重机 /// public int? T04 { get; set; } /// /// 特种设备-升降机 /// public int? T05 { get; set; } /// /// 特种设备-叉车 /// public int? T06 { get; set; } /// /// 大型机具设备-挖掘机 /// public int? D01 { get; set; } /// /// 大型机具设备-装载机 /// public int? D02 { get; set; } /// /// 大型机具设备-拖板车 /// public int? D03 { get; set; } /// /// 大型机具设备-桩机 /// public int? D04 { get; set; } /// /// 特殊机具设备-吊篮 /// public int? S01 { get; set; } /// /// 合计 /// public int? TotalNum { get; set; } } }