| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * This is the model class for table "{{%ali_mini_sign}}".
- *
- * @property int $id
- * @property int $type
- * @property string $batch_no
- * @property int $batch_status
- * @property int $ali_mini_id
- * @property string $fail_reason
- * @property string $batch_url
- * @property int $app_type
- */
- class AliMiniSign extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%ali_mini_sign}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [["id", "type", "batch_status", "ali_mini_id", 'app_type'], 'integer'],
- [["batch_no", "fail_reason", "batch_url"], 'string'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => "",
- 'type' => "类型 0当面付 1商家分账 2App支付",
- 'batch_no' => "编号",
- 'batch_status' => "事务状态 0未创建 1已经创建 2已签约 3审核中 4异常单 5 待确认 6确认成功 7超时未确认 8审核失败",
- 'ali_mini_id' => "",
- 'fail_reason' => "错误信息",
- 'batch_url' => "签约链接",
- 'app_type' => '支付宝应用类型 0小程序 1应用'
- ];
- }
- }
|