Reqparams.php 1.51 KB
<?php

namespace WebPlugin\Pay;

/**
 * 请求付款的参数类
 * Enter description here ...
 * @author smile
 *
 */
class Reqparams
{
	
	public function __construct($_orderCode, $_totalFee, $_goodName, $client_ip, $_orderTime, $_paymentParameter="", $_isTest=false, $uid=0, $userName='')
	{
		$this->orderCode = $_orderCode;
		$this->totalFee = $_totalFee;
		$this->goodsName = $_goodName;
		$this->spbill_create_ip = $client_ip;
		$this->orderTime = $_orderTime;
		$this->paymentParameter = $_paymentParameter;
		$this->isTest = $_isTest;
		$this->uid = $uid;
		$this->userName = $userName;
	}
	
	/**
	 * 订单Code
	 * Enter description here ...
	 * @var Integer
	 */
	var $orderCode = 0;
	
	/**
	 * 付款金额,统一采用分为单位
	 * Enter description here ...
	 * @var double
	 */
	var $totalFee = 0;
	
	
	/**
	 * 商品名称
	 * Enter description here ...
	 * @var String
	 */
	var $goodsName = "";
	
	/**
	 * 客户的ip
	 * Enter description here ...
	 * @var string
	 */
	var $spbill_create_ip = "";
	
	/**
	 * 订单时间
	 * Enter description here ...
	 * @var unknown_type
	 */
	var $orderTime = "";
	
	/**
	 * 支付方式参数
	 * Enter description here ...
	 * @var string
	 */
	var $paymentParameter = "";
	
	/**
	 * 是否为测试
	 * Enter description here ...
	 * @var bool
	 */
	var $isTest = false;
	
	/**
	 * 用户ID
	 * @var integer
	 */
	var $uid = 0;
	
	/**
	 * 用户名
	 * @var string
	 */
	var $userName = '';
	
}