WCS_EQUIPMENTALARMS.cs 651 B

123456789101112131415161718192021
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace WCS.Data.Models
  6. {
  7. public class WCS_EQUIPMENTALARMS
  8. {
  9. [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
  10. public string ALARM_ID { get; set; }
  11. public int ALARM_CODE { get; set; }
  12. public string ALARM_TYPE { get; set; }
  13. public string ALARM_DB_TYPE { get; set; }
  14. public string ALARM_NAME { get; set; }
  15. public string ALARM_DESC { get; set; }
  16. public string ALARM_NOTES { get; set; }
  17. public string ALARM_EQUTYPE { get; set; }
  18. public string ALARM_NO { get; set; }
  19. }
  20. }