| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * @description:
- * @property string $desc
- * @property string $order_no
- * @property string $huifu_id
- * @property integer $order_id
- * @property integer $percent
- * @property integer $create_time
- * @property integer $is_type
- * @property integer $js_id
- * @property integer $fz_id
- * agent_examine
- */
- class ScanCodePayOrderPercent extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%scan_code_pay_order_percent}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [[ 'desc', 'order_no', 'huifu_id'], 'string'],
- [['id', 'order_id', 'pay_price', 'percent', 'create_time', 'is_type', 'js_id', 'fz_id'], 'integer']
- ];
- }
- }
|