using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
///
/// 物质出门明细数据项
///
public class GoodsManageItemItem
{
///
/// 物质出门明细ID
///
public string GoodsManageItemId
{
get;
set;
}
///
/// 物质出门ID
///
public string GoodsManageId
{
get;
set;
}
///
/// 物质名称及规格型号
///
public string GoodsName
{
get;
set;
}
///
/// 数量(大写)
///
public string GoodsCounts
{
get;
set;
}
///
/// 单位
///
public string CountingUnit
{
get;
set;
}
}
}