UNPKG

yimultiscreenserver-sdk-web-migration

Version:

YiMultiScreenServer SDK for Web

24 lines 725 B
export class AccountVO { constructor() { this.accountId = -1; this.phoneNumber = ""; this.vipLevel = 0; this.registerTime = 0; } equals(o) { return o instanceof AccountVO && this.accountId === o.accountId && this.phoneNumber === o.phoneNumber && this.vipLevel === o.vipLevel && this.registerTime === o.registerTime; } toString() { return `AccountVO{` + `accountId=${this.accountId}, ` + `phoneNumber=${this.phoneNumber}, ` + `vipLevel='${this.vipLevel}', ` + `registerTime='${this.registerTime}'` + `}`; } } //# sourceMappingURL=AccountVO.js.map