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.

27 lines
706 B

3 years ago
  1. using System;
  2. namespace Aborlen.Model
  3. {
  4. /// <summary>
  5. /// 数据表实体类:StationAlarmText
  6. /// </summary>
  7. [Serializable()]
  8. public class StationAlarmText :BasicEntity<StationAlarmText>
  9. {
  10. //当前代码为系统自动生成
  11. /// <summary>
  12. /// String:标签Id
  13. /// </summary>
  14. public String TagId {get;set;}
  15. /// <summary>
  16. /// String:报警文本
  17. /// </summary>
  18. public String AlarmText {get;set;}
  19. }
  20. }