using System;
|
|
namespace Leit.Model
|
|
{
|
|
/// <summary>
|
|
/// 数据表实体类:StationInfo
|
|
/// </summary>
|
|
[Serializable()]
|
|
public class StationInfo :EntityBase<StationInfo>
|
|
{
|
|
//当前代码为系统自动生成
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// String:工位号
|
|
/// </summary>
|
|
|
|
public String StationCode {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:工位名称
|
|
/// </summary>
|
|
|
|
public String StationName {get;set;}
|
|
|
|
}
|
|
}
|
|
|