50 lines
1.4 KiB
C#
50 lines
1.4 KiB
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 MotorPassthroughCable
|
|
{
|
|
/*
|
|
电机型号 动力线或动力刹车直通线数量 编码器直通线数量 直通刹车线数量 直通线总数量
|
|
*/
|
|
|
|
/// <summary>
|
|
/// 电机型号
|
|
/// </summary>
|
|
[ExcelColumn(Name = "电机型号")]
|
|
public string MotorModel { get; set; }
|
|
|
|
/// <summary>
|
|
/// 动力线或动力刹车直通线数量
|
|
/// </summary>
|
|
[ExcelColumn(Name = "动力线或动力刹车直通线数量")]
|
|
public int PowerOrBrakeCableCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 编码器直通线数量
|
|
/// </summary>
|
|
[ExcelColumn(Name = "编码器直通线数量")]
|
|
public int EncoderCableCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 直通刹车线数量
|
|
/// </summary>
|
|
[ExcelColumn(Name = "直通刹车线数量")]
|
|
public int BrakeCableCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 直通线总数量
|
|
/// </summary>
|
|
[ExcelColumn(Name = "直通线总数量")]
|
|
public int TotalCableCount { get; set; }
|
|
}
|
|
}
|