| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use yii\db\ActiveRecord;
- use yii\behaviors\TimestampBehavior;
- use Yii;
- /**
- * This is the model class for table "{{%video_goods_share}}".
- *
- * @property int $id
- * @property int $order_id 订单id
- * @property int $order_detail 订单详细表id
- * @property int $goods_id 商品id
- * @property int $video_goods_id 抖品id
- * @property int $author_user_id 作者user_id
- * @property float $proportion 金额比例
- * @property float $profit 金额
- * @property int $created_at 创建时间
- * @property int $send_time 发送时间
- * @property int $is_send 是否发送
- * @property int $store_id 商城id
- * @property int $num 购买数
- * @property int $is_pay 订单是否支付
- */
- class VideoGoodsShare extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%video_goods_share}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['id', 'order_id', 'order_detail', 'goods_id', 'video_goods_id', 'author_user_id', 'store_id', 'created_at', 'send_time', 'is_send', 'num', 'is_pay'], 'integer'],
- [['proportion', 'profit'], 'number']
- ];
- }
- }
|