aozhiwei 2c47da7ce5 1
2021-12-03 14:18:05 +08:00

48 lines
1.3 KiB
PHP

<?php
namespace models;
class User extends BaseModel {
public static function show($row)
{
return array(
'account_id' => $row['account_id'],
'name' => $row['name'],
'sex' => $row['sex'],
'head_id' => $row['hero_id'],
'head_frame' => $row['head_frame'],
'level' => $row['level'],
'exp' => $row['exp'],
'rank' => $row['rank'],
'score' => $row['score'],
'gold' => $row['gold'],
'diamond' => $row['diamond'],
'hero_id' => $row['hero_id'],
'first_fight' => $row['first_fight'],
'activated' => $row['activated'],
);
}
public static function info($row)
{
return array(
'account_id' => $row['account_id'],
'name' => $row['name'],
'sex' => $row['sex'],
'head_id' => $row['hero_id'],
'head_frame' => $row['head_frame'],
'level' => $row['level'],
'exp' => $row['exp'],
'rank' => $row['rank'],
'score' => $row['score'],
'gold' => $row['gold'],
'diamond' => $row['diamond'],
'hero_id' => $row['hero_id'],
'first_fight' => $row['first_fight'],
'activated' => $row['activated'],
);
}
}