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

31 lines
684 B
C#
Raw Normal View History

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>
2025-03-29 11:38:58 +08:00
[ExcelColumn(Name = "电机功率数值")]
public int MotorPower { get; set; }
}
}