hxp
2019-02-26 07d1d607ef08d0e455064a0cb30f7c623cf32085
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