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
706 B

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