From 07d1d607ef08d0e455064a0cb30f7c623cf32085 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期二, 26 二月 2019 10:53:14 +0800 Subject: [PATCH] 6250 【后端】【2.0】拍卖行开发单(封包) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py index e15e640..593887a 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetPack.py @@ -2594,6 +2594,7 @@ _fields_ = [ ("Cmd", c_ubyte), ("SubCmd", c_ubyte), + ("RecordType", c_ubyte), #记录类型 0-我的拍品记录 1-仙盟拍品记录 2-我的竞拍记录 ] def __init__(self): @@ -2610,6 +2611,7 @@ def Clear(self): self.Cmd = 0xB5 self.SubCmd = 0x12 + self.RecordType = 0 return def GetLength(self): @@ -2621,11 +2623,13 @@ def OutputString(self): DumpString = '''// B5 12 拍卖行查询拍卖记录 //tagCGQueryAuctionRecord: Cmd:%s, - SubCmd:%s + SubCmd:%s, + RecordType:%d '''\ %( self.Cmd, - self.SubCmd + self.SubCmd, + self.RecordType ) return DumpString -- Gitblit v1.8.0