| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use Yii;
- use yii\behaviors\TimestampBehavior;
- use yii\db\ActiveRecord;
- /**
- * This is the model class for table "{{%agent_goods_bind_goods}}".
- *
- * @property integer $id
- * @property integer $goods_agent_admin_id
- * @property integer $front_agent_admin_id
- * @property integer $cloud_goods_id
- * @property integer $cloud_supplier_id
- * @property integer $status
- * @property integer $created_at
- * @property integer $updated_at
- * @property integer $is_delete
- */
- class AgentGoodsBindGoods extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%agent_goods_bind_goods}}';
- }
- public function behaviors()
- {
- return [
- [
- 'class' => TimestampBehavior::class,
- 'attributes' => [
- ActiveRecord::EVENT_BEFORE_INSERT => ['updated_at', 'created_at'],
- ActiveRecord::EVENT_BEFORE_UPDATE => 'updated_at'
- ]
- ]
- ];
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id', 'goods_agent_admin_id', 'front_agent_admin_id', 'cloud_goods_id', 'cloud_supplier_id', 'status', 'created_at', 'updated_at', 'is_delete'], 'integer']
- ];
- }
- }
|