1234567891011121314151617181920212223242526272829303132333435 |
- using AutoMapper;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace DllEapEntity.Dtos
- {
- [AutoMap(typeof(Equipmentnumber))]
- public class ExportEquipmentnumber
- {
-
- [Description( "设备型号")]
- public string Equipmentmodel { get; set; }
- [Description("工段")]
- public string WorkshopSection { get; set; }
- [Description("三号园区 2#1F")]
- public int ThreeSecFir { get; set; }
- [Description("未来城 A1#1F")]
- public int FutureCity { get; set; }
- [Description( "未来城 A1#3F")]
- public int FutureCityThird { get; set; }
- [Description("二号园区 1#1F")]
- public int SecfirstFir { get; set; }
- [Description( "二号园区 1#2F")]
- public int SecFirstSec { get; set; }
- [Description( "二号园区 1#3F")]
- public int SecFirstThird { get; set; }
- [Description("二号园区 2#1F")]
- public int SecSecFirst { get; set; }
- [Description( "二号园区 2#2F")]
- public int SecSecSec { get; set; }
-
- }
- }
|