| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * This is the model class for table "{{%wechataccount}}".
- *
- * @property integer $id
- * @property string $mobile
- * @property string $openid
- * @property integer $update_time
- * @property string $type_name
- * @property string $channel_id
- * @property string $appid
- */
- class Wechataccount extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%wechataccount}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id', 'update_time'], 'integer'],
- [['openid', 'mobile', 'type_name', 'channel_id', 'appid'], 'string'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- ];
- }
- }
|