| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- namespace app\models;
- use Yii;
- /**
- * This is the model class for table "{{%login_times}}".
- *
- * @property string $user_name 用户名
- * @property int $ip IP
- * @property int $login_time 登陆时间
- * @property int $is_admin 是否管理员
- * @property int $times 次数
- */
- class LoginTimes extends \app\common\models\EActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%login_times}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['user_name'], 'required'],
- [['ip', 'login_time', 'is_admin', 'times'], 'integer'],
- [['user_name'], 'string', 'max' => 40],
- [['user_name'], 'unique'],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'user_name' => 'User Name',
- 'ip' => 'Ip',
- 'login_time' => 'Login Time',
- 'is_admin' => 'Is Admin',
- 'times' => 'Times',
- ];
- }
- }
|