新增原始消息包设置接口

This commit is contained in:
boyce
2020-12-09 18:04:20 +08:00
parent 73532ce154
commit c929834099

View File

@@ -115,4 +115,9 @@ func (slf *PBRawPackInfo) GetPackType() uint16 {
func (slf *PBRawPackInfo) GetMsg() []byte {
return slf.rawMsg
}
func (slf *PBRawPackInfo) SetPackInfo(typ uint16,rawMsg []byte){
slf.typ = typ
slf.rawMsg = rawMsg
}