32 lines
947 B
PHP
32 lines
947 B
PHP
<?php
|
||
|
||
namespace app\common\model;
|
||
|
||
use app\BaseModel;
|
||
use support\Model;
|
||
|
||
/**
|
||
* wa_requirement_order
|
||
* @property integer $id (主键)
|
||
* @property integer $user_id
|
||
* @property integer $requirement_id 需求
|
||
* @property mixed $requirement_deteail 需求详情
|
||
* @property string $trade_no 交易单号
|
||
* @property string $transaction_id 交易流水号
|
||
* @property string $amount 金额
|
||
* @property integer $pay_status 支付状态 0:未支付 1:已支付 2:取消支付 3:支付失败
|
||
* @property string $pay_time 支付时间
|
||
* @property string $refund_trade_no 退款单号
|
||
* @property string $refund_transaction_id 退款流水号
|
||
* @property string $refund_time 退款时间
|
||
* @property integer $is_refund 是否退款 0:为退款 1:已退款
|
||
* @property mixed $created_at 创建时间
|
||
* @property string $updated_at 更新时间
|
||
* @property string $deleted_at
|
||
*/
|
||
class RequirementOrder extends BaseModel
|
||
{
|
||
|
||
|
||
}
|