📄 exchangedata.java
字号:
/*
* Created on 2004-8-9
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package com.gctech.misc.provision.handler;
/**
* <p>Title:</p>
* <p>Description:</p>
* <p>Copyright: Copyright (c) Gctech 2004-8-9</p>
* <p>Company: 吉芙德资讯有限公司</p>
*
* @version 1.0
* @author liyi
*
*/
public class ExchangeData {
String FeeMSISDN = "";
String FeePseudoCode = "";
String DestMSISDN = "";
String DestPseudoCode = "";
String LinkID = "";
String ActionID = "";
String SPServiceID = "";
/**
* @return
*/
public String getDestMSISDN() {
return DestMSISDN;
}
/**
* @return
*/
public String getDestPseudoCode() {
return DestPseudoCode;
}
/**
* @return
*/
public String getFeeMSISDN() {
return FeeMSISDN;
}
/**
* @return
*/
public String getFeePseudoCode() {
return FeePseudoCode;
}
/**
* @param string
*/
public void setDestMSISDN(String string) {
DestMSISDN = string;
}
/**
* @param string
*/
public void setDestPseudoCode(String string) {
DestPseudoCode = string;
}
/**
* @param string
*/
public void setFeeMSISDN(String string) {
FeeMSISDN = string;
}
/**
* @param string
*/
public void setFeePseudoCode(String string) {
FeePseudoCode = string;
}
/**
* @return
*/
public String getLinkID() {
return LinkID;
}
/**
* @param string
*/
public void setLinkID(String string) {
LinkID = string;
}
/**
* @return
*/
public String getActionID() {
return ActionID;
}
/**
* @param string
*/
public void setActionID(String string) {
ActionID = string;
}
/**
* @return
*/
public String getSPServiceID() {
return SPServiceID;
}
/**
* @param string
*/
public void setSPServiceID(String string) {
SPServiceID = string;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -