| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * Class CloudInventoryCash
- * @package app\modules\common\models
- *
- * @property integer $id
- * @property integer $saas_id
- * @property string $saas_name
- * @property string $saas_mobile
- * @property integer $price
- * @property integer $status
- * @property integer $action_time
- * @property integer $pay_type
- * @property string $service_charge
- * @property integer $cash_type
- * @property string $account
- * @property string $name
- * @property string $bank_name
- * @property integer $created_at
- */
- class CloudInventoryCash extends \yii\db\ActiveRecord
- {
- /**
- * @return string
- */
- public static function tableName()
- {
- return '{{%cloud_inventory_cash}}';
- }
- public function rules()
- {
- return [
- [['id', 'saas_id', 'status','action_time','pay_type','cash_type'],'integer'],
- [['name','bank_name','account' ,'saas_name' ,'saas_mobile'], 'string'],
- [['service_charge'], 'number']
- ];
- }
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'saas_id' => '商盟用户id',
- 'price' => '提现金额',
- 'status' => '提现状态',
- 'action_time' => '处理时间',
- 'pay_type' => '打款类型',
- 'service_charge' => '手续费',
- 'cash_type' => '提现方式',
- 'account' => '账号',
- 'bank_name' => '开户行名称',
- 'created_at' => '添加时间',
- 'name' => '姓名'
- ];
- }
- }
|