#region Apache License Version 2.0
/*----------------------------------------------------------------
Copyright 2023 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied. See the License for the specific language governing permissions
and limitations under the License.
Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md
----------------------------------------------------------------*/
#endregion Apache License Version 2.0
/*----------------------------------------------------------------
Copyright (C) 2023 Senparc
文件名:BatchesRequestData.cs
文件功能描述:发起商家转账API 请求数据
创建标识:Senparc - 20220629
----------------------------------------------------------------*/
using System;
using System.Collections.Generic;
using System.Text;
namespace Senparc.Weixin.TenPayV3.Apis.Transfer
{
///
/// 发起商家转账API 请求数据
///
public class BatchesRequestData
{
///
/// 直连商户的appid
/// 申请商户号的appid或商户号绑定的appid(企业号corpid即为此appid)。示例值:wxf636efh567hg4356
///
public string appid { get; set; }
///
/// 商家批次单号
/// 商户系统内部的商家批次单号,要求此参数只能由数字、大小写字母组成,在商户系统内部唯一。示例值:plfk2020042013
///
public string out_batch_no { get; set; }
///
/// 批次名称
/// 商户系统内部的商家批次单号,要求此参数只能由数字、大小写字母组成,在商户系统内部唯一。示例值:plfk2020042013
///
public string batch_name { get; set; }
///
/// 批次备注
/// 转账说明,UTF8编码,最多允许32个字符。示例值:2019年1月深圳分部报销单
///
public string batch_remark { get; set; }
///
/// 转账总金额
/// 转账金额单位为“分”。转账总金额必须与批次内所有明细转账金额之和保持一致,否则无法发起转账操作。示例值:4000000
///
public int total_amount { get; set; }
///
/// 转账总笔数
/// 一个转账批次单最多发起三千笔转账。转账总笔数必须与批次内所有明细之和保持一致,否则无法发起转账操作。示例值:200
///
public int total_num { get; set; }
///
/// 转账明细列表
/// 发起批量转账的明细列表,最多三千笔
///
public Transfer_Detail_List[] transfer_detail_list { get; set; }
}
public class Transfer_Detail_List
{
///
/// 商家明细单号
/// 商户系统内部区分转账批次单下不同转账明细单的唯一标识,要求此参数只能由数字、大小写字母组成。示例值:x23zy545Bd5436
///
public string out_detail_no { get; set; }
///
/// 转账金额
/// 转账金额单位为分。示例值:200000
///
public int transfer_amount { get; set; }
///
/// 转账备注
/// 单条转账备注(微信用户会收到该备注),UTF8编码,最多允许32个字符。示例值:2020年4月报销
///
public string transfer_remark { get; set; }
///
/// 用户在直连商户应用下的用户标示
/// openid是微信用户在公众号appid下的唯一用户标识(appid不同,则获取到的openid就不同),可用于永久标记一个用户。
/// 获取openid
/// 示例值:o-MYE42l80oelYMDE34nYD456Xoy
///
public string openid { get; set; }
///
/// 收款用户姓名
/// 1、明细转账金额 >= 2,000,收款用户姓名必填;
/// 2、同一批次转账明细中,收款用户姓名字段需全部填写、或全部不填写;
/// 3、 若传入收款用户姓名,微信支付会校验用户openID与姓名是否一致,并提供电子回单;
/// 4、收款方姓名。采用标准RSA算法,公钥由微信侧提供
/// 5、该字段需进行加密处理,加密方法详见敏感信息加密说明。(提醒:必须在HTTP头中上送Wechatpay-Serial)
/// 6、商户需确保收集用户的姓名信息,以及向微信支付传输用户姓名和账号标识信息做一致性校验已合法征得用户授权
/// 示例值:757b340b45ebef5467rter35gf464344v3542sdf4t6re4tb4f54ty45t4yyry45
///
public string user_name { get; set; }
}
}