User.php 545 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace app\admin\model\unishop;
  3. use app\common\model\MoneyLog;
  4. use think\Model;
  5. class User extends Model
  6. {
  7. // 表名
  8. protected $name = 'user';
  9. // 自动写入时间戳字段
  10. protected $autoWriteTimestamp = 'int';
  11. // 定义时间戳字段名
  12. protected $createTime = 'createtime';
  13. protected $updateTime = 'updatetime';
  14. /**
  15. * 修改用户昵称
  16. */
  17. public function getUsernameAttr($value, $data)
  18. {
  19. return !empty($data['username']) ? $data['username'] : __('Visitor');
  20. }
  21. }