1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace common\models;
- use Yii;
- /**
- * This is the model class for table "{{%user_wechat}}".
- *
- * @property string $id
- * @property integer $uid
- */
- class UserWechat extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%user_wechat}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['uid'], 'integer'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'uid' => 'Uid',
- 'openid' => 'openid',
- ];
- }
- }
|