course/app/common/model/RequirementOrder.php

32 lines
947 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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
{
}