12345678910111213141516171819 |
- using AutoMapper;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace DllEapEntity.Dtos
- {
- [AutoMap(typeof(MacProgramDto))]
- public class ExportMacProgram
- {
- [Description(" 机型代码 ")]
- public string MacModelCode { get; set; }
- [Description("机型名称 ")]
- public string MacModelName { get; set; }
- [Description("程序名称 ")]
- public string ProgramName { get; set; }
- }
- }
|