msgqueryuserinfo.java

来自「同步接收web services请求」· Java 代码 · 共 36 行

JAVA
36
字号
/**
 * 
 */
package com.aceway.vas.sjcraw.cbgp201.cum;

import com.aceway.vas.sjcraw.cbgp201.Msg;
import com.aceway.vas.sjcraw.cbgp201.common.DataFormat;
import com.aceway.vas.sjcraw.cbgp201.common.MsgInfo;

/**
 * @标题: 华为彩铃平台接口规范
 * @说明: 
 * @版权: Copyright(c) 2007 
 * @公司: 北京汉铭信通科技有限公司 
 * @部门: 增值业务部 
 * @作者: 武达
 * @Jun 5, 2007
 */
public class MsgQueryUserInfo extends Msg {
	
	private static int operCode = MsgInfo.CRBT_QUERY_USERINFO;
	private static int lenBody = MsgInfo.LEN_CRBT_QUERY_USER_INFO;
	
	private String accountId;
	
	public MsgQueryUserInfo(String seqNo, String linkId, String accountId){
		super.setCommandLength(lenBody);
		super.setMsgHead(operCode, "0", seqNo, linkId);
		this.accountId = DataFormat.makeString(accountId, 21);
		super.setMsgBody(this.accountId.getBytes());
		
	}
	

}

⌨️ 快捷键说明

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