集成,总结MES功能
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

28 lines
588 B

  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. }