| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 | 
							- using System;
 
- using System.Collections.Generic;
 
- using System.Text;
 
- using SqlSugar;
 
- namespace WCS_Client
 
- {
 
-     public class WCS_EQUIPMENTINFO
 
-     {
 
-         [SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
 
-         public string Equ_Id { get; set; }
 
-         public string Equ_No { get; set; }
 
-         public string Equ_PlcName { get; set; }
 
-         public int Equ_Sequence { get; set; }
 
-         public string Equ_Area { get; set; }
 
-         public string Equ_Type { get; set; }
 
-         public string Equ_BarCode { get; set; }
 
-         public string Equ_Alarms { get; set; }
 
-         public string Equ_AlaramsMsg { get; set; }
 
-         public string Equ_AlaramsNo { get; set; }
 
-         public string Equ_ReadWriteDB_Sequence { get; set; }
 
-         public int Equ_ReadWriteDB_Length { get; set; }
 
-         public string Equ_ReadDB_Sequence { get; set; }
 
-         public int Equ_ReadDB_Length { get; set; }
 
-         public string Equ_StatusDB_Sequence { get; set; }
 
-         public int Equ_StatusDB_Length { get; set; }
 
-         public string Equ_BarCodeDB_Sequence { get; set; }
 
-         public int Equ_BarCodeDB_Length { get; set; }
 
-         public string Equ_ExtendOne_Sequence { get; set; }
 
-         public int Equ_ExtendOne_Length { get; set; }
 
-         public string Equ_ExtendTwo_Sequence { get; set; }
 
-         public int Equ_ExtendTwo_Length { get; set; }
 
-         public string Equ_ExtendThree_Sequence { get; set; }
 
-         public int Equ_ExtendThree_Length { get; set; }
 
-         public string Equ_Notes { get; set; }
 
-         //[SugarColumn(IsIgnore = true)]
 
-         //public EquipmentSignal EquSignal { get; set; }
 
-         //[SugarColumn(IsIgnore = true)]
 
-         //public SrmSignal EquSignal_Srm
 
-         //{
 
-         //    get
 
-         //    {
 
-         //        return EquSignal as SrmSignal;
 
-         //    }
 
-         //}
 
-         //[SugarColumn(IsIgnore = true)]
 
-         //public ConvSignal EquSignal_Conv
 
-         //{
 
-         //    get
 
-         //    {
 
-         //        return EquSignal as ConvSignal;
 
-         //    }
 
-         //}
 
-         //[SugarColumn(IsIgnore = true)]
 
-         //public RGVSignal EquSignal_Rgv
 
-         //{
 
-         //    get
 
-         //    {
 
-         //        return EquSignal as RGVSignal;
 
-         //    }
 
-         //}
 
-     }
 
- }
 
 
  |