| 123456789101112131415161718192021 | using SqlSugar;using System;using System.Collections.Generic;using System.Text;namespace WCS.Data.Models{    public class WCS_EQUIPMENTALARMS    {        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]        public string ALARM_ID { get; set; }        public int ALARM_CODE { get; set; }        public string ALARM_TYPE { get; set; }        public string ALARM_DB_TYPE { get; set; }        public string ALARM_NAME { get; set; }        public string ALARM_DESC { get; set; }        public string ALARM_NOTES { get; set; }        public string ALARM_EQUTYPE { get; set; }        public string ALARM_NO { get; set; }    }}
 |