ExportEquipmentnumber.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using AutoMapper;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Text;
  6. namespace DllEapEntity.Dtos
  7. {
  8. [AutoMap(typeof(Equipmentnumber))]
  9. public class ExportEquipmentnumber
  10. {
  11. [Description( "设备型号")]
  12. public string Equipmentmodel { get; set; }
  13. [Description("工段")]
  14. public string WorkshopSection { get; set; }
  15. [Description("三号园区 2#1F")]
  16. public int ThreeSecFir { get; set; }
  17. [Description("未来城 A1#1F")]
  18. public int FutureCity { get; set; }
  19. [Description( "未来城 A1#3F")]
  20. public int FutureCityThird { get; set; }
  21. [Description("二号园区 1#1F")]
  22. public int SecfirstFir { get; set; }
  23. [Description( "二号园区 1#2F")]
  24. public int SecFirstSec { get; set; }
  25. [Description( "二号园区 1#3F")]
  26. public int SecFirstThird { get; set; }
  27. [Description("二号园区 2#1F")]
  28. public int SecSecFirst { get; set; }
  29. [Description( "二号园区 2#2F")]
  30. public int SecSecSec { get; set; }
  31. }
  32. }