📄 emj000006.java
字号:
package jm.entity.game.player;
import jm.framework.gui.JMEntity;
/**
* <p>Title: 包裹物品</p>
*
* <p>Copyright: Copyright (c) 2004-2007</p>
*
* <p>Company: 1SHome</p>
*
* <p>@author Spook</p>
*
* @since 1.3.2
* @see JDK 1.5.0.6
*/
public class EMJ000006 implements JMEntity {
/** 包裹编号*/
private String bigItemID = null;
/** 玩家角色编号*/
private String playerRoleID = null;
/** 物品编号*/
private String itemID = null;
/** 物品数量*/
private String itemNum = null;
/** 物品种类*/
private String itemType = null;
/** 奇偶行区分 */
private String rowsKb = null;
/**
* clear
*/
public void clear () {
/* 包裹编号*/
this.bigItemID = null;
/* 玩家角色编号*/
this.playerRoleID = null;
/* 物品编号*/
this.itemID = null;
/* 物品数量*/
this.itemNum = null;
/* 物品种类*/
this.itemType = null;
}
/**
* 获得存储器内容
*
* @return 存储器内容
*/
public String getItems () {
return "BigItemID;PlayerRoleID;ItemID;ItemNum;ItemType";
}
/**
* toString
*/
public String toString () {
return "MJ000005:"
/* 包裹编号*/
+ " bigItemID =" + this.bigItemID + ", "
/* 玩家角色编号*/
+ " playerRoleID =" + this.playerRoleID + ", "
/* 物品编号*/
+ " itemID =" + this.itemID + ", "
/* 物品数量*/
+ " itemNum =" + this.itemNum + ", "
/* 物品种类*/
+ " itemType =" + this.itemType + ", "
;
}
/**
* 获取包裹编号
*
* @return BigItemID 包裹编号
*/
public String getBigItemID () {
return this.bigItemID;
}
/**
* 获取玩家角色编号
*
* @return PlayerRoleID 玩家角色编号
*/
public String getPlayerRoleID () {
return this.playerRoleID;
}
/**
* 获取物品编号
*
* @return ItemID 物品编号
*/
public String getItemID () {
return this.itemID;
}
/**
* 获取物品数量
*
* @return ItemNum 物品数量
*/
public String getItemNum () {
return this.itemNum;
}
/**
* 获取物品种类
*
* @return ItemType 物品种类
*/
public String getItemType () {
return this.itemType;
}
/**
* 获得奇偶行区分
*
* @return 奇偶行区分
*/
public String getRowsKb () {
return rowsKb;
}
/**
* 设置包裹编号
*
* @param BigItemID 包裹编号
*/
public void setBigItemID (String BigItemID) {
this.bigItemID = BigItemID;
}
/**
* 设置玩家角色编号
*
* @param PlayerRoleID 玩家角色编号
*/
public void setPlayerRoleID (String PlayerRoleID) {
this.playerRoleID = PlayerRoleID;
}
/**
* 设置物品编号
*
* @param ItemID 物品编号
*/
public void setItemID (String ItemID) {
this.itemID = ItemID;
}
/**
* 设置物品数量
*
* @param ItemNum 物品数量
*/
public void setItemNum (String ItemNum) {
this.itemNum = ItemNum;
}
/**
* 设置物品种类
*
* @param ItemType 物品种类
*/
public void setItemType (String ItemType) {
this.itemType = ItemType;
}
/**
* 设置奇偶行区分
*
* @param string 奇偶行区分
*/
public void setRowsKb (String RowsKb) {
this.rowsKb = RowsKb;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -