| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use yii\db\ActiveRecord;
- use yii\behaviors\TimestampBehavior;
- class WxCardBind extends ActiveRecord
- {
- public static function tableName()
- {
- return '{{%wx_card_bind}}';
- }
- public function behaviors()
- {
- return [
- [
- // 自动更新创建和更新时间
- 'class' => TimestampBehavior::class,
- 'value' => null
- ]
- ];
- }
- public function rules()
- {
- return [
- [['id', 'store_id', 'user_id'], 'integer'],
- [['create_at', 'update_at', 'is_delete', 'card_id', 'code', 'phone', 'openid', 'outer_str'], 'safe'],
- ];
- }
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'card_id' => 'card_id',
- 'store_id' => 'store_id',
- 'code' => 'code',
- 'phone' => 'phone',
- 'openid' => 'openid',
- 'user_id' => 'user_id',
- 'outer_str' => 'outer_str',
- 'is_delete' => '删除',
- 'create_at' => '创建时间',
- 'update_at' => '更新时间',
- ];
- }
- }
|