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.PlnSaleOrd.炼钢计划.entity
{
///
/// 数据库表CRAFT_LG2_ALLOY所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:PC-20160925CXYF 时间:2017-09-03
///
public class CraftLg2AlloyEntity
{
///
/// 合金配置方案ID(AOY+工艺卡号+6位流水)
///
private string alloyGid = "";
///
/// 物料编码
///
private string itemCode = "";
///
/// 物料名称
///
private string itemName = "";
///
/// 方案配置量(公斤)
///
private decimal? inputAmount = null;
///
/// 合金配置方案ID(AOY+工艺卡号+6位流水)
///
[Description("合金配置")]
[Nullable(false)]
[DataLength(20)]
public string AlloyGid
{
get { return alloyGid; }
set { alloyGid = value; }
}
///
/// 物料编码
///
[Description("物料编码")]
[Nullable(false)]
[DataLength(20)]
public string ItemCode
{
get { return itemCode; }
set { itemCode = value; }
}
///
/// 物料名称
///
[Description("物料名称")]
[Nullable(true)]
[DataLength(8)]
public string ItemName
{
get { return itemName; }
set { itemName = value; }
}
///
/// 方案配置量(公斤)
///
[Description("方案配置量(公斤)")]
[Nullable(true)]
[DataLength(10)]
public decimal? InputAmount
{
get { return inputAmount; }
set { inputAmount = value; }
}
///
/// 序号
///
private string xh = "";
[Description("序号")]
public string Xh
{
get { return xh; }
set { xh = value; }
}
}
}