| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- import { FsUtils } from "../FsUtils/FsUtils";
- import { Data } from "./Data";
- /**
- * 用户数据
- */
- export class User extends Data {
- /**
- * 编号
- */
- public id: number;
- /**
- * 账号
- */
- public account: string;
- /**
- * 密码
- */
- public token: string;
- /**
- * 头像
- */
- public avator: string;
- /**
- * 昵称
- */
- public nickName: string;
- /**
- * 金币
- */
- public money: number = 0;
- /**
- * 10的次幂
- */
- // public moneyPower10: number = 0;
- /**
- * 神石
- */
- public diamond: number = 0;
- /**
- * 红包兑换可提 1:1000
- */
- public bonus: number = 0;
- /**
- * 贡献奖励可提 1:1000
- */
- public contribution: number = 0;
- /**
- *玩家等级
- */
- public lv: number = 0;
- // public get money(): number {
- // return this._money * Math.pow(10, this.moneyPower10);
- // }
- // public set money(money: number) {
- // let result = FsUtils.formateHugeNumber(money);
- // this._money = result.value;
- // this.moneyPower10 = result.power10;
- // }
- }
|