| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?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_front_erp_cloud_goods}}".
- *
- * @property integer $id
- * @property integer $cloud_goods_id
- * @property integer $cloud_supplier_id
- * @property string $goods_name
- * @property string $goods_no
- * @property string $cover_pic
- * @property string $attr
- * @property integer $status
- * @property integer $is_delete
- * @property integer $created_at
- * @property integer $updated_at
- */
- class AgentFrontErpCloudGoods extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%agent_front_erp_cloud_goods}}';
- }
- public function behaviors()
- {
- return [
- [
- 'class' => TimestampBehavior::class,
- ]
- ];
- }
- public function rules()
- {
- return [
- [['goods_name', 'cover_pic', 'attr', 'goods_no'], 'string'],
- [['id', 'cloud_goods_id', 'cloud_supplier_id', 'status', 'is_delete', 'created_at', 'updated_at'], 'integer']
- ];
- }
- }
|