adcprovisionrequest.java

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

JAVA
149
字号
package mcm.adc.request;

import mcm.adc.SvcContent;

public class ADCProvisionRequest extends SvcContent {
	protected String SICode;

	protected String SIName;

	protected int OptType;

	protected String ECCode;

	protected String ECName;

	protected String PrdCode;

	protected String ServiceCode;

	protected String PrdOrdNum;

	protected String ServiceName;

	protected String AccessNo;

	protected String ECAccessPort;

	protected String StartEfft;

	protected String EndEfft;

	protected String AdminUser;

	protected String AdminUFID;
	
	/**
	 * 
	 * @param svcContent
	 */
	public ADCProvisionRequest(String svcContent){
		super(svcContent);
	}

	/**
	 * @return the accessNo
	 */
	public String getAccessNo() {
		return AccessNo;
	}

	/**
	 * @return the adminUFID
	 */
	public String getAdminUFID() {
		return AdminUFID;
	}

	/**
	 * @return the adminUser
	 */
	public String getAdminUser() {
		return AdminUser;
	}

	/**
	 * @return the eCAccessPort
	 */
	public String getECAccessPort() {
		return ECAccessPort;
	}

	/**
	 * @return the eCCode
	 */
	public String getECCode() {
		return ECCode;
	}

	/**
	 * @return the eCName
	 */
	public String getECName() {
		return ECName;
	}

	/**
	 * @return the endEfft
	 */
	public String getEndEfft() {
		return EndEfft;
	}

	/**
	 * @return the optType
	 */
	public int getOptType() {
		return OptType;
	}

	/**
	 * @return the prdCode
	 */
	public String getPrdCode() {
		return PrdCode;
	}

	/**
	 * @return the prdOrdNum
	 */
	public String getPrdOrdNum() {
		return PrdOrdNum;
	}

	/**
	 * @return the serviceCode
	 */
	public String getServiceCode() {
		return ServiceCode;
	}

	/**
	 * @return the serviceName
	 */
	public String getServiceName() {
		return ServiceName;
	}

	/**
	 * @return the sICode
	 */
	public String getSICode() {
		return SICode;
	}

	/**
	 * @return the sIName
	 */
	public String getSIName() {
		return SIName;
	}

	/**
	 * @return the startEfft
	 */
	public String getStartEfft() {
		return StartEfft;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?