<?php namespace app\model; use think\Model; class User extends Model { protected $table = "jm_users"; protected $pk = "uid"; protected $autoWriteTimestamp = true; const NORMALSTATUS = 1; // 账号正常状态 }