| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 | <?phpnamespace common\models;use common\modules\user\behaviors\UserBehavior;use common\modules\user\models\User;use yii\behaviors\TimestampBehavior;/** * This is the model class for table "{{%admin_log}}". * * @property integer $id * @property string $route * @property string $description * @property integer $created_at * @property integer $user_id * @property User $user */class AdminLog extends \yii\db\ActiveRecord{    /**     * @inheritdoc     */    public static function tableName()    {        return '{{%admin_log}}';    }    /**     * @inheritdoc     */    public function rules()    {        return [            [['description'], 'string'],            [['user_id', 'ip'], 'integer'],            [['route'], 'string', 'max' => 255]        ];    }    /**     * @inheritdoc     */    public function attributeLabels()    {        return [            'id' => 'ID',            'route' => '路由',            'description' => '详情',            'created_at' => '操作时间',            'user_id' => '操作人',            'ip' => '操作人ip'        ];    }    public function behaviors()    {        return [            [                'class' => TimestampBehavior::className(),                'updatedAtAttribute' => null            ],            UserBehavior::className()        ];    }}
 |