| | |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using SqlSugar; |
| | | using WIDESEAWCS_Core.DB.Models; |
| | | using WIDESEAWCS_Core.Tenants; |
| | | |
| | | namespace WIDESEAWCS_Model.Models |
| | | { |
| | | [SugarTable("Dt_TorqueOp", "æ¯æ¬¡æ§è¡æååå¨çå¼"), MultiTenant] |
| | | public class Dt_TorqueOp |
| | | public class Dt_TorqueOp :BaseEntity |
| | | { |
| | | /// <summary> |
| | | /// ä¸»é® |
| | | /// </summary> |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int ID { get; set; } |
| | | |
| | | public string DeviceCode { get; set; } |
| | | |
| | | //[SugarColumn(IsNullable = true, Length = 50,ColumnName = "TakeId")] |
| | | public int TakeId { get; set; } |
| | | /// <summary> |
| | | /// 设å¤å· |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50)] |
| | | public string DeviceCode { get; set; } |
| | | |
| | | //[SugarColumn(IsNullable = true, Length = 50, ColumnName = "GroupOp")] |
| | | |
| | | /// <summary> |
| | | /// ä»»å¡idï¼å®ä¹çä»»å¡idï¼ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50)] |
| | | public string TakeId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// é£ä¸ªç±»åæ³ææçï¼æºæ¢°/çµæ°/å°æ²ï¼ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50)] |
| | | public string GroupOp { get; set; } |
| | | |
| | | //[SugarColumn(IsNullable = true, Length = 50, ColumnName = "ProcessSte")] |
| | | /// <summary> |
| | | /// æ¥éª¤ï¼ä»»å¡è¡¨ä¸çå°æ¥éª¤ï¼ï¼ç¬¬å æ¥åå¨ç |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50)] |
| | | public int ProcessSte { get; set; } |
| | | |
| | | //[SugarColumn(IsNullable = true, Length = 50, ColumnName = "TorqueSize")] |
| | | public string TorqueSize { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// åå¨å¼çå¤§å° |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50)] |
| | | public float TorqueSize { get; set; } |
| | | |
| | | ///// <summary> |
| | | ///// æå弿¯å¦åæ ¼ |
| | | ///// </summary> |
| | | //[SugarColumn(IsNullable = true)] |
| | | //public bool OpStatus { get; set; } |
| | | |
| | | |
| | | } |