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; } [SugarColumn(IsPrimaryKey = true)] public string OccPartId { 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 CableLectotypeLines { get; set; } } }