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.
 

34 lines
872 B

using System;
namespace Leit.Model
{
/// <summary>
/// 数据表实体类:DeviceServerInfo
/// </summary>
[Serializable()]
public class DeviceServerInfo :EntityBase<DeviceServerInfo>
{
//当前代码为系统自动生成
/// <summary>
/// String:
/// </summary>
public String AreaId {get;set;}
/// <summary>
/// Int32:
/// </summary>
public Int32 StartByteIndex {get;set;}
/// <summary>
/// Int32:
/// </summary>
public Int32 ReadLength {get;set;}
}
}