| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- class CloudInventoryOrderDetail extends \yii\db\ActiveRecord
- {
- public $goods;
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%cloud_inventory_order_detail}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['order_id', 'goods_id', 'num', 'total_price', 'attr', 'cat_id'], 'required'],
- [[ 'order_id', 'goods_id', 'num', 'is_delete','cat_id'], 'integer'],
- [['attr','pic','goods_name'], 'string'],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'order_id' => '订单 ID',
- 'goods_id' => '商品id',
- 'goods_name' => '商品名称',
- 'num' => '商品数量',
- 'total_price' => '此商品的总价',
- 'attr' => '商品规格',
- 'pic' => '商品规格图片',
- 'cat_id' => '商品分类id',
- 'is_delete' => 'Is Delete',
- ];
- }
- }
|