using AutoMapper;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace DllEapEntity.ExportDtos
{
///
/// 机型导出实体
///
[AutoMap(typeof(MacModel))]
public class MacModelExportDto
{
///
/// 机型编号
///
[Description("机型编号")]
public string FCode { get; set; }
///
/// 机型名称
///
[Description("机型名称")]
public string FName { get; set; }
///
/// 软件版本
///
[Description("软件版本")]
public string SoftVersion { get; set; }
///
/// 厂家
///
[Description("厂家")]
public string SupplierFCode { get; set; }
///
/// 程序保存路径
///
[Description("程序保存路径")]
public string ProRootPath { get; set; }
///
/// 备注
///
[Description("备注")]
public string Remark { get; set; }
}
}