圣珀
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

2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace UFIDA.ISV.Create_U9_ItemMaster
  6. {
  7. public class ItemMasterDataClass
  8. {
  9. private string _ItemName;//物料名称
  10. private string _ItemCategory;//物料主分类
  11. private string _SPEC;//规格
  12. private string _Code;//料号
  13. public string FinanceType { get; set; }//参考料号1
  14. public string Code1 { get; set; }//参考料号1
  15. public string Code2 { get; set; }//参考料号2
  16. public string Description { get; set; }//描述
  17. public string ItemFormAttribute { get; set; }//料品形态属性=_Type
  18. public string InventoryUOM { get; set; }//库存主单位
  19. public DateTime Effective_EffectiveDate { get; set; }//生效日期
  20. public string ItemName
  21. {
  22. get { return _ItemName; }
  23. set { _ItemName = value; }
  24. }
  25. public string Code
  26. {
  27. get { return _Code; }
  28. set { _Code = value; }
  29. }
  30. public string ItemCategory
  31. {
  32. get { return _ItemCategory; }
  33. set { _ItemCategory = value; }
  34. }
  35. public string SPEC
  36. {
  37. get { return _SPEC; }
  38. set { _SPEC = value; }
  39. }
  40. }
  41. }