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.
102 lines
2.2 KiB
102 lines
2.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace HelloTeamcenter.hello
|
|
{
|
|
public class MXLClass
|
|
{
|
|
private string index;
|
|
|
|
public string Index
|
|
{
|
|
get { return index; }
|
|
set { index = value; }
|
|
}
|
|
private string item_id;
|
|
|
|
public string Item_id
|
|
{
|
|
get { return item_id; }
|
|
set { item_id = value; }
|
|
}
|
|
private string partnumber;
|
|
|
|
public string Partnumber
|
|
{
|
|
get { return partnumber; }
|
|
set { partnumber = value; }
|
|
}
|
|
private string name;
|
|
|
|
public string Name
|
|
{
|
|
get { return name; }
|
|
set { name = value; }
|
|
}
|
|
private string object_desc;
|
|
|
|
public string Object_desc
|
|
{
|
|
get { return object_desc; }
|
|
set { object_desc = value; }
|
|
}
|
|
private string count;
|
|
|
|
public string Count
|
|
{
|
|
get { return count; }
|
|
set { count = value; }
|
|
}
|
|
private string material;
|
|
|
|
public string Material
|
|
{
|
|
get { return material; }
|
|
set { material = value; }
|
|
}
|
|
private string tolweight;
|
|
|
|
public string Tolweight
|
|
{
|
|
get { return tolweight; }
|
|
set { tolweight = value; }
|
|
}
|
|
private string perweight;
|
|
|
|
public string Perweight
|
|
{
|
|
get { return perweight; }
|
|
set { perweight = value; }
|
|
}
|
|
private string memo;
|
|
|
|
public string Memo
|
|
{
|
|
get { return memo; }
|
|
set { memo = value; }
|
|
}
|
|
private string itemtype;
|
|
|
|
public string Itemtype
|
|
{
|
|
get { return itemtype; }
|
|
set { itemtype = value; }
|
|
}
|
|
private int index_num;
|
|
|
|
public int Index_num
|
|
{
|
|
get { return index_num; }
|
|
set { index_num = value; }
|
|
}
|
|
private string producttype;
|
|
|
|
public string Producttype
|
|
{
|
|
get { return producttype; }
|
|
set { producttype = value; }
|
|
}
|
|
}
|
|
}
|