ExportMacProgramDto.cs 652 B

1234567891011121314151617181920212223
  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(MacProgramDto))]
  9. public class ExportMacProgramDto
  10. {
  11. [Description("机台编号")]
  12. public string MacCode { get; set; }
  13. [Description("机台名称 ")]
  14. public string MacName { get; set; }
  15. [Description(" 机型 ")]
  16. public string MacModelCode { get; set; }
  17. [Description(" 位置 ")]
  18. public string RegionName { get; set; }
  19. [Description("程序名称 ")]
  20. public string ProgramName { get; set; }
  21. }
  22. }