using System;
namespace Leit.Model
{
///
/// 数据表实体类:WorkStepInfo
///
[Serializable()]
public class WorkStepInfo :EntityBase
{
//当前代码为系统自动生成
///
/// Int32:
///
[SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public Int32 Id {get;set;}
///
/// String:
///
public String StationCode {get;set;}
///
/// Int32:托盘类型 0左托盘 1右托盘
///
public Int32? PalletType {get;set;}
///
/// String:工件类型
///
public String PieceType {get;set;}
///
/// Int32:工件类型代码
///
public Int32? PieceTypeCode {get;set;}
///
/// Int32:工步序号
///
public Int32? SerialId {get;set;}
///
/// String:工步内容
///
public String StepContent {get;set;}
///
/// String:技术要求
///
public String TechRequirement {get;set;}
///
/// String:图片名称
///
public String PictureName {get;set;}
///
/// Int32:GIF_X坐标
///
public Int32? GifPosition_X {get;set;}
///
/// Int32:GIF_Y坐标
///
public Int32? GifPosition_Y {get;set;}
///
/// Int32:plc步序号
///
public Int32? PlcStepId {get;set;}
}
}