using System;
|
|
namespace Aborlen.Model
|
|
{
|
|
/// <summary>
|
|
/// 数据表实体类:StationAlarmText
|
|
/// </summary>
|
|
[Serializable()]
|
|
public class StationAlarmText :BasicEntity<StationAlarmText>
|
|
{
|
|
//当前代码为系统自动生成
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// String:标签Id
|
|
/// </summary>
|
|
|
|
public String TagId {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:报警文本
|
|
/// </summary>
|
|
|
|
public String AlarmText {get;set;}
|
|
|
|
}
|
|
}
|
|
|