集成,总结MES功能
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

AlarmLog.cs 588 B

il y a 4 mois
123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPA.MES.Base.Application.Entitys.KepData
  7. {
  8. [SugarTable("DataVAlarmLog")]
  9. public class AlarmLog: DEntityBase
  10. {
  11. public string Name { get; set; }
  12. /// <summary>
  13. /// 当前值
  14. /// </summary>
  15. public string Value { get; set; }
  16. /// <summary>
  17. /// 报警信息
  18. /// </summary>
  19. public string ValueStr{ get; set; }
  20. public DateTime CreateTime { get; set; }
  21. }
  22. }