EPLAN_PROD_Plugin/Sinvo.EplanHpD.Plugin.Service/Model/MotorModel.cs

41 lines
1008 B
C#
Raw Normal View History

2024-12-23 11:56:17 +08:00
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; }
[SugarColumn(IsNullable = true)]
public string MotorUniqueFlag { get; set; }
2024-12-23 11:56:17 +08:00
[SugarColumn(IsNullable = true)]
public string DocName { get; set; }
2024-12-23 11:56:17 +08:00
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; }
}
}