ssapmsghead.java
来自「Mina框架http协议简单实现。Mina框架效率与c程序比较接近」· Java 代码 · 共 54 行
JAVA
54 行
package com.eshore.pubservice.ssap.msg;
/**
* SSAP 消息首部.
*
* @author lishuisheng
*
*/
public class SSAPMsgHead {
private byte version;
private byte serice;
private byte type;
private String code;
public byte getVersion() {
return version;
}
public void setVersion(byte version) {
this.version = version;
}
public byte getSerice() {
return serice;
}
public void setSerice(byte serice) {
this.serice = serice;
}
public byte getType() {
return type;
}
public void setType(byte type) {
this.type = type;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?