31 lines
672 B
C#
31 lines
672 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; }
|
|
}
|
|
}
|