EPLAN_PROD_Plugin/Sinvo.EplanHpD.Plugin.WPFUI/Datas/BrandData.cs

49 lines
1.2 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sinvo.EplanHpD.Plugin.WPFUI.Datas
{
public class BrandData
{
/// <summary>
/// 品牌名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 是否使用复合线
/// </summary>
public bool ComplexLine { get; set; }
/// <summary>
/// 使用的数据表
/// </summary>
public string SheetName { get; set; }
/// <summary>
/// 型号前缀
/// </summary>
public string Prefix { get; set; }
/// <summary>
/// 电机型号前缀
/// </summary>
public string MotorPrefix { get; set; }
/// <summary>
/// 型号后缀
/// </summary>
public string Suffix { get; set; }
/// <summary>
/// 电机带前段线的功率范围,起始(>)
/// </summary>
public double MotorCablePowerRangeStart { get; set; }
/// <summary>
/// 电机带前段线的功率范围,结束(<=
/// </summary>
public double MotorCablePowerRangeEnd { get; set; }
}
}