| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- namespace common\models\user;
- use Yii;
- /**
- * This is the model class for table "qimall_user_statistics_total_copy1".
- *
- * @property int $id ID
- * @property int $mall_id 商城ID
- * @property int $user_id 用户ID
- * @property float $order_money
- * @property float $pay_money
- * @property float $finish_order_money
- * @property float $refund_order_money
- * @property int $status 状态【1启用 0禁用 -1删除】
- * @property int $created_at 创建时间
- * @property int $updated_at 更新数据时间
- * @property float $pay_selling_price 已支付的订单售价总额(商品价格)
- * @property float $finish_selling_price 已完成的订单售价总额(商品价格)
- * @property float $user_goods_price_total 已支付的业绩
- * @property float $refund_finish_order_money
- */
- class UserStatisticsTotalCopy1 extends \common\models\base\BaseActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return 'qimall_user_statistics_total_copy1';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['mall_id', 'user_id', 'status', 'created_at', 'updated_at'], 'integer'],
- [['order_money', 'pay_money', 'finish_order_money', 'refund_order_money', 'pay_selling_price', 'finish_selling_price', 'user_goods_price_total', 'refund_finish_order_money'], 'number'],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'mall_id' => 'Mall ID',
- 'user_id' => 'User ID',
- 'order_money' => 'Order Money',
- 'pay_money' => 'Pay Money',
- 'finish_order_money' => 'Finish Order Money',
- 'refund_order_money' => 'Refund Order Money',
- 'status' => 'Status',
- 'created_at' => 'Created At',
- 'updated_at' => 'Updated At',
- 'pay_selling_price' => 'Pay Selling Price',
- 'finish_selling_price' => 'Finish Selling Price',
- 'user_goods_price_total' => 'User Goods Price Total',
- 'refund_finish_order_money' => 'Refund Finish Order Money',
- ];
- }
- }
|