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.
45 lines
796 B
45 lines
796 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace HelloTeamcenter.hello
|
|
{
|
|
class ItemMsgBean
|
|
{
|
|
|
|
private String itemId ;//零组件id
|
|
private String itemRev ;//零组件版本
|
|
/// <summary>
|
|
/// 获取和得到id的方法
|
|
/// </summary>
|
|
public String ItemId {
|
|
set {
|
|
itemId = value;
|
|
}
|
|
get {
|
|
return itemId;
|
|
}
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取和得到版本的方法
|
|
/// </summary>
|
|
public String ItemRev {
|
|
|
|
set
|
|
{
|
|
itemRev = value;
|
|
}
|
|
get
|
|
{
|
|
return itemRev;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
}
|