1234567891011121314151617181920212223 |
- using AutoMapper;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace DllEapEntity.Dtos
- {
- [AutoMap(typeof(MacProgramDto))]
- public class ExportMacProgramDto
- {
- [Description("机台编号")]
- public string MacCode { get; set; }
- [Description("机台名称 ")]
- public string MacName { get; set; }
- [Description(" 机型 ")]
- public string MacModelCode { get; set; }
- [Description(" 位置 ")]
- public string RegionName { get; set; }
- [Description("程序名称 ")]
- public string ProgramName { get; set; }
- }
- }
|