40 lines
967 B
C#
40 lines
967 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Sinvo.EplanHpD.Plugin.Service.Model
|
|
{
|
|
|
|
[SugarTable("T_MOTOR")]
|
|
public class Motor
|
|
{
|
|
//public string MotorId { get; set; }
|
|
public string OccPartId { get; set; }
|
|
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string MotorUniqueFlag { get; set; }
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
public string DocName { get; set; }
|
|
public string MotorPower { get; set; }
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
public string Brand { get; set; }
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
public string MotorSerie { get; set; }
|
|
|
|
public string MotorModelStr { get; set; }
|
|
|
|
public string AxisNo { get; set; }
|
|
|
|
|
|
[SugarColumn(IsIgnore = true)]
|
|
public virtual ICollection<LectotypeLine> CableLectotypeLines { get; set; }
|
|
}
|
|
|
|
}
|