You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.3 KiB
48 lines
1.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace UFIDA.ISV.Create_U9_ItemMaster
|
|
{
|
|
public class ItemMasterDataClass
|
|
{
|
|
private string _ItemName;//物料名称
|
|
private string _ItemCategory;//物料主分类
|
|
private string _SPEC;//规格
|
|
private string _Code;//料号
|
|
|
|
public string FinanceType { get; set; }//参考料号1
|
|
|
|
public string Code1 { get; set; }//参考料号1
|
|
public string Code2 { get; set; }//参考料号2
|
|
public string Description { get; set; }//描述
|
|
public string ItemFormAttribute { get; set; }//料品形态属性=_Type
|
|
public string InventoryUOM { get; set; }//库存主单位
|
|
public DateTime Effective_EffectiveDate { get; set; }//生效日期
|
|
|
|
public string ItemName
|
|
{
|
|
get { return _ItemName; }
|
|
set { _ItemName = value; }
|
|
}
|
|
public string Code
|
|
{
|
|
get { return _Code; }
|
|
set { _Code = value; }
|
|
}
|
|
public string ItemCategory
|
|
{
|
|
get { return _ItemCategory; }
|
|
set { _ItemCategory = value; }
|
|
}
|
|
|
|
public string SPEC
|
|
{
|
|
get { return _SPEC; }
|
|
set { _SPEC = value; }
|
|
}
|
|
|
|
|
|
}
|
|
}
|