Browse Source

模型CcbPayment

ccb_pay2
yangrz 4 years ago
parent
commit
8e699d5435
  1. 53
      app/Model/CcbPayment.php

53
app/Model/CcbPayment.php

@ -0,0 +1,53 @@
<?php
declare (strict_types=1);
namespace App\Model;
use Hyperf\DbConnection\Model\Model;
/**
* @property int $id
* @property int $order_main_id
* @property string $main_ordr_no
* @property string $pymd_cd
* @property string $clrg_dt
* @property string $sub_appid
* @property string $sub_openid
* @property string $py_ordr_tpcd
* @property float $ordr_tamt
* @property float $txn_tamt
* @property string $orderlist
* @property string $py_trn_no
* @property string $prim_ordr_no
* @property string $ordr_gen_tm
* @property string $cshdk_url
* @property string $rtn_par_data
* @property string $ordr_stcd
* @property string $rtn_orderlist
* @property string $pay_time
* @property string $pay_type
* @property string $pay_channel
* @property string $debit_credit_type
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
*/
class CcbPayment extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'lanzu_ccb_payment';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [];
/**
* The attributes that should be cast to native types.
*
* @var array
*/
protected $casts = ['id' => 'integer', 'order_main_id' => 'integer', 'ordr_tamt' => 'float', 'txn_tamt' => 'float', 'created_at' => 'datetime', 'updated_at' => 'datetime'];
}
Loading…
Cancel
Save