using Core.Mes.Client.Comm.Attribute;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace Core.StlMes.Client.YdmStuffManage.Entity
{///
/// 数据库表YDM_GP_BUTTRESS所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:DM22222 时间:2017-12-21
///
public class YdmGpButtressEntity
{
///
/// 材料号
///
private string matNo = "";
///
/// 熔炼炉号
///
private string stoveNo = "";
///
/// 标示炉号
///
private string flagStoveNo = "";
///
/// 判定炉号
///
private string judgeStoveNo = "";
///
/// 仓库代码
///
private string storageNo = "";
///
/// 库位代码
///
private string locationNo = "";
///
/// 层号
///
private decimal? laryNo = null;
///
/// 位置
///
private decimal? locNo = null;
///
/// 仓库类型(8003 离线库 、投料库、中间库、在线库、成品库)
///
private string storageAttr = "";
///
/// 仓库类型描述
///
private string storageAttrName = "";
///
/// 库类别代码(8002 管、坯、原料库、合金辅料库、工具库
///
private string storageTypeNo = "";
///
/// 库类别代码描述
///
private string storageTypeName = "";
///
/// 作业部门代码
///
private string departmentCode = "";
///
/// 作业部门描述
///
private string departmentDesc = "";
///
/// 作业科室代码
///
private string managementNo = "";
///
/// 作业科室名称
///
private string managementName = "";
///
/// 备注
///
private string memo = "";
///
/// 创建人
///
private string createName = "";
///
/// 创建时间
///
private string createTime = "";
///
/// 修改人
///
private string updateName = "";
///
/// 修改时间
///
private string updateTime = "";
///
/// 删除人
///
private string deleteName = "";
///
/// 删除时间
///
private string deleteTime = "";
///
/// 组号(判定炉号对应长度分组)
///
private string groudNo = "";
///
/// 库位名称
///
private string locationName = "";
///
/// 支数
///
private string actCount = "";
///
/// 材料号
///
[Description("材料号")]
[Nullable(false)]
[DataLength(20)]
public string MatNo
{
get { return matNo; }
set { matNo = value; }
}
///
/// 熔炼炉号
///
[Description("熔炼炉号")]
[Nullable(true)]
[DataLength(20)]
public string StoveNo
{
get { return stoveNo; }
set { stoveNo = value; }
}
///
/// 标示炉号
///
[Description("标示炉号")]
[Nullable(true)]
[DataLength(20)]
public string FlagStoveNo
{
get { return flagStoveNo; }
set { flagStoveNo = value; }
}
///
/// 判定炉号
///
[Description("判定炉号")]
[Nullable(true)]
[DataLength(8)]
public string JudgeStoveNo
{
get { return judgeStoveNo; }
set { judgeStoveNo = value; }
}
///
/// 仓库代码
///
[Description("仓库代码")]
[Nullable(true)]
[DataLength(5)]
public string StorageNo
{
get { return storageNo; }
set { storageNo = value; }
}
///
/// 库位代码
///
[Description("料位")]
[Nullable(true)]
[DataLength(9)]
public string LocationNo
{
get { return locationNo; }
set { locationNo = value; }
}
///
/// 层号
///
[Description("层号")]
[Nullable(true)]
[DataLength(2)]
public decimal? LaryNo
{
get { return laryNo; }
set { laryNo = value; }
}
///
/// 位置
///
[Description("位置")]
[Nullable(true)]
[DataLength(2)]
public decimal? LocNo
{
get { return locNo; }
set { locNo = value; }
}
///
/// 仓库类型(8003 离线库 、投料库、中间库、在线库、成品库)
///
[Description("仓库类型(8003 离线库 、投料库、中间库、在线库、成品库)")]
[Nullable(true)]
[DataLength(10)]
public string StorageAttr
{
get { return storageAttr; }
set { storageAttr = value; }
}
///
/// 仓库类型描述
///
[Description("仓库类型描述")]
[Nullable(true)]
[DataLength(20)]
public string StorageAttrName
{
get { return storageAttrName; }
set { storageAttrName = value; }
}
///
/// 库类别代码(8002 管、坯、原料库、合金辅料库、工具库
///
[Description("库类别代码(8002 管、坯、原料库、合金辅料库、工具库")]
[Nullable(true)]
[DataLength(10)]
public string StorageTypeNo
{
get { return storageTypeNo; }
set { storageTypeNo = value; }
}
///
/// 库类别代码描述
///
[Description("库类别代码描述")]
[Nullable(true)]
[DataLength(20)]
public string StorageTypeName
{
get { return storageTypeName; }
set { storageTypeName = value; }
}
///
/// 作业部门代码
///
[Description("作业部门代码")]
[Nullable(true)]
[DataLength(20)]
public string DepartmentCode
{
get { return departmentCode; }
set { departmentCode = value; }
}
///
/// 作业部门描述
///
[Description("作业部门描述")]
[Nullable(true)]
[DataLength(40)]
public string DepartmentDesc
{
get { return departmentDesc; }
set { departmentDesc = value; }
}
///
/// 作业科室代码
///
[Description("作业科室代码")]
[Nullable(true)]
[DataLength(20)]
public string ManagementNo
{
get { return managementNo; }
set { managementNo = value; }
}
///
/// 作业科室名称
///
[Description("作业科室名称")]
[Nullable(true)]
[DataLength(40)]
public string ManagementName
{
get { return managementName; }
set { managementName = value; }
}
///
/// 备注
///
[Description("备注")]
[Nullable(true)]
[DataLength(200)]
public string Memo
{
get { return memo; }
set { memo = value; }
}
///
/// 创建人
///
[Description("创建人")]
[Nullable(true)]
[DataLength(20)]
public string CreateName
{
get { return createName; }
set { createName = value; }
}
///
/// 创建时间
///
[Description("创建时间")]
[Nullable(true)]
public string CreateTime
{
get { return createTime; }
set { createTime = value; }
}
///
/// 修改人
///
[Description("修改人")]
[Nullable(true)]
[DataLength(20)]
public string UpdateName
{
get { return updateName; }
set { updateName = value; }
}
///
/// 修改时间
///
[Description("修改时间")]
[Nullable(true)]
public string UpdateTime
{
get { return updateTime; }
set { updateTime = value; }
}
///
/// 删除人
///
[Description("删除人")]
[Nullable(true)]
[DataLength(20)]
public string DeleteName
{
get { return deleteName; }
set { deleteName = value; }
}
///
/// 删除时间
///
[Description("删除时间")]
[Nullable(true)]
public string DeleteTime
{
get { return deleteTime; }
set { deleteTime = value; }
}
///
/// 组号(判定炉号对应长度分组)
///
[Description("组号(判定炉号对应长度分组)")]
[Nullable(true)]
[DataLength(3)]
public string GroudNo
{
get { return groudNo; }
set { groudNo = value; }
}
///
/// 库位名称
///
[Description("库位名称")]
[Nullable(true)]
[DataLength(20)]
public string LocationName
{
get { return locationName; }
set { locationName = value; }
}
///
/// 支数
///
[Description("支数")]
[Nullable(false)]
[DataLength(5)]
public string ActCount
{
get { return actCount; }
set { actCount = value; }
}
}
}