40 lines
918 B
C#
40 lines
918 B
C#
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; }
|
|
}
|
|
}
|