You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace GDZZ.Application.Service.WXPay.Dto
|
|
|
|
|
{
|
|
|
|
|
public class PayMoney
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 商户账号的appid
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string mch_appid { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 商户号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string mchid { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 微信支付平台商家设置的私钥
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string key { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 转账金额,单位为分
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string amount { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 付款备注
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string desc { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收款用户的openid
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string openid { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// //用户的真实姓名
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string re_user_name { get; set; }
|
|
|
|
|
|
|
|
|
|
public string requesturl { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|