标签:ase color one __init__ api django djang token nbsp
class BaseResponse(object): def __init__(self): self.code = 1000 self.data = None self.error = None @property def dict(self): return self.__dict__ class TokenResponse(BaseResponse): def __init__(self): super(BaseResponse).__init__() self.code = 1000 self.token = None
class PricePolicyIncalid(Exception): def __init__(self, msg): self.msg = msg
标签:ase color one __init__ api django djang token nbsp
原文地址:https://www.cnblogs.com/Rivend/p/12077808.html