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.
96 lines
2.1 KiB
96 lines
2.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace HelloTeamcenter.hello
|
|
{
|
|
public class BTLClass
|
|
{
|
|
private string item_id;
|
|
|
|
public string Item_id
|
|
{
|
|
get { return item_id; }
|
|
set { item_id = value; }
|
|
}
|
|
private string item_name;
|
|
|
|
public string Item_name
|
|
{
|
|
get { return item_name; }
|
|
set { item_name = value; }
|
|
}
|
|
private string partnumber;
|
|
|
|
public string Partnumber
|
|
{
|
|
get { return partnumber; }
|
|
set { partnumber = value; }
|
|
}
|
|
private string projectname;
|
|
|
|
public string Projectname
|
|
{
|
|
get { return projectname; }
|
|
set { projectname = value; }
|
|
}
|
|
private string proportion;
|
|
|
|
public string Proportion
|
|
{
|
|
get { return proportion; }
|
|
set { proportion = value; }
|
|
}
|
|
private string mapsheet;
|
|
|
|
public string Mapsheet
|
|
{
|
|
get { return mapsheet; }
|
|
set { mapsheet = value; }
|
|
}
|
|
private string item_revision_id;
|
|
|
|
public string Item_revision_id
|
|
{
|
|
get { return item_revision_id; }
|
|
set { item_revision_id = value; }
|
|
}
|
|
private string weight;
|
|
|
|
public string Weight
|
|
{
|
|
get { return weight; }
|
|
set { weight = value; }
|
|
}
|
|
private string materialgrade;
|
|
|
|
public string Materialgrade
|
|
{
|
|
get { return materialgrade; }
|
|
set { materialgrade = value; }
|
|
}
|
|
private string allpage;
|
|
|
|
public string Allpage
|
|
{
|
|
get { return allpage; }
|
|
set { allpage = value; }
|
|
}
|
|
private string pagenumber = "1";
|
|
|
|
public string Pagenumber
|
|
{
|
|
get { return pagenumber; }
|
|
set { pagenumber = value; }
|
|
}
|
|
private string productType;
|
|
|
|
public string ProductType
|
|
{
|
|
get { return productType; }
|
|
set { productType = value; }
|
|
}
|
|
|
|
}
|
|
}
|