2025-03-28 16:49:31 +08:00
|
|
|
|
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; }
|
2025-04-02 17:24:34 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 电机带前段线的功率范围,起始(>)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double MotorCablePowerRangeStart { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 电机带前段线的功率范围,结束(<=)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double MotorCablePowerRangeEnd { get; set; }
|
2025-03-28 16:49:31 +08:00
|
|
|
|
}
|
|
|
|
|
}
|