📄 servicestaterequest.java
字号:
package mcm.adc.request;
import mcm.adc.SvcContent;
public class ServiceStateRequest extends SvcContent {
protected String SICode;
protected String SIName;
protected String OptType;
protected String ECCode;
protected String ECName;
protected String PrdCode;
protected String PrdOrdNum;
protected String ServiceCode;
protected String ServiceName;
protected String OptTime;
protected String ExecTime;
protected String ModiReason;
public ServiceStateRequest(String svcContent){
super(svcContent);
}
/**
* @return Returns the eCCode.
*/
public String getECCode() {
return ECCode;
}
/**
* @return Returns the eCName.
*/
public String getECName() {
return ECName;
}
/**
* @return Returns the execTime.
*/
public String getExecTime() {
return ExecTime;
}
/**
* @return Returns the modiReason.
*/
public String getModiReason() {
return ModiReason;
}
/**
* @return Returns the optTime.
*/
public String getOptTime() {
return OptTime;
}
/**
* @return Returns the optType.
*/
public String getOptType() {
return OptType;
}
/**
* @return Returns the prdCode.
*/
public String getPrdCode() {
return PrdCode;
}
/**
* @return Returns the prdOrdNum.
*/
public String getPrdOrdNum() {
return PrdOrdNum;
}
/**
* @return Returns the serviceCode.
*/
public String getServiceCode() {
return ServiceCode;
}
/**
* @return Returns the serviceName.
*/
public String getServiceName() {
return ServiceName;
}
/**
* @return Returns the sICode.
*/
public String getSICode() {
return SICode;
}
/**
* @return Returns the sIName.
*/
public String getSIName() {
return SIName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -