EPLAN_PROD_Plugin/Sinvo.EplanHpD.Plugin.WPFUI/Models/MotorPowerModel.cs

31 lines
684 B
C#

using MiniExcelLibs.Attributes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sinvo.EplanHpD.Plugin.WPFUI.Models
{
/// <summary>
/// 电机功率
/// </summary>
public class MotorPowerModel
{
/*
电机型号 功率
*/
/// <summary>
/// 电机型号
/// </summary>
[ExcelColumn(Name = "电机型号")]
public string MotorModel { get; set; }
/// <summary>
/// 电机型号
/// </summary>
[ExcelColumn(Name = "电机功率数值")]
public int MotorPower { get; set; }
}
}