📄 activetestrequest.java
字号:
package com.gctech.cmpp.msg;
import java.io.*;
/**
* <p>Title: 短信 API</p>
* <p>Description: 短信SP API</p>
* <p>Copyright: Copyright (c) 2004</p>
* <p>Company: GCTECH</p>
* @author not attributable
* @version $Id: ActiveTestRequest.java,v 1.4 2004/05/24 06:13:10 wanghb Exp $
*/
public class ActiveTestRequest extends CmppMsg{
public ActiveTestRequest() {
super();
this.head.setCommandId(CommandID.CMPP_ACTIVE_TEST);
this.head.setTotalLength(12);
}
//add by liya begin
public ActiveTestRequest(CmppMsg cmppmsg) {
super(cmppmsg);
}
public String toString() {
return super.toString();
}
//add by liya end
protected void toByteArray(byte[] data) {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -