servicestaterequest.java

来自「电信业务的ADC的接口程序 包括客户端和服务器端的程序」· Java 代码 · 共 109 行

JAVA
109
字号
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 + =
减小字号Ctrl + -
显示快捷键?