123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- using System;
- namespace BasePaySdk.Request
- {
- /**
- * 代扣支付
- *
- * @author sdk-generator
- * @Description
- */
- public class V2TradeOnlinepaymentWithholdpayRequest : BaseRequest
- {
- /**
- * 请求日期
- */
- private string reqDate;
- /**
- * 请求流水号
- */
- private string reqSeqId;
- /**
- * 商户号
- */
- private string huifuId;
- /**
- * 用户客户号
- */
- private string userHuifuId;
- /**
- * 绑卡id
- */
- private string cardBindId;
- /**
- * 订单金额
- */
- private string transAmt;
- /**
- * 商品描述
- */
- private string goodsDesc;
- /**
- * 代扣类型
- */
- private string withholdType;
- /**
- * 银行扩展数据
- */
- private string extendPayData;
- /**
- * 风控信息
- */
- private string riskCheckData;
- /**
- * 设备信息数据
- */
- private string terminalDeviceData;
- /**
- * 异步通知地址
- */
- private string notifyUrl;
- public override string getFunctionCode() {
- return FunctionCodeEnum.V2_TRADE_ONLINEPAYMENT_WITHHOLDPAY;
- }
- public V2TradeOnlinepaymentWithholdpayRequest() {
- }
- public V2TradeOnlinepaymentWithholdpayRequest(string reqDate, string reqSeqId, string huifuId, string userHuifuId, string cardBindId, string transAmt, string goodsDesc, string withholdType, string extendPayData, string riskCheckData, string terminalDeviceData, string notifyUrl) {
- this.reqDate = reqDate;
- this.reqSeqId = reqSeqId;
- this.huifuId = huifuId;
- this.userHuifuId = userHuifuId;
- this.cardBindId = cardBindId;
- this.transAmt = transAmt;
- this.goodsDesc = goodsDesc;
- this.withholdType = withholdType;
- this.extendPayData = extendPayData;
- this.riskCheckData = riskCheckData;
- this.terminalDeviceData = terminalDeviceData;
- this.notifyUrl = notifyUrl;
- }
- public string getReqDate() {
- return reqDate;
- }
- public void setReqDate(string reqDate) {
- this.reqDate = reqDate;
- }
- public string getReqSeqId() {
- return reqSeqId;
- }
- public void setReqSeqId(string reqSeqId) {
- this.reqSeqId = reqSeqId;
- }
- public string getHuifuId() {
- return huifuId;
- }
- public void setHuifuId(string huifuId) {
- this.huifuId = huifuId;
- }
- public string getUserHuifuId() {
- return userHuifuId;
- }
- public void setUserHuifuId(string userHuifuId) {
- this.userHuifuId = userHuifuId;
- }
- public string getCardBindId() {
- return cardBindId;
- }
- public void setCardBindId(string cardBindId) {
- this.cardBindId = cardBindId;
- }
- public string getTransAmt() {
- return transAmt;
- }
- public void setTransAmt(string transAmt) {
- this.transAmt = transAmt;
- }
- public string getGoodsDesc() {
- return goodsDesc;
- }
- public void setGoodsDesc(string goodsDesc) {
- this.goodsDesc = goodsDesc;
- }
- public string getWithholdType() {
- return withholdType;
- }
- public void setWithholdType(string withholdType) {
- this.withholdType = withholdType;
- }
- public string getExtendPayData() {
- return extendPayData;
- }
- public void setExtendPayData(string extendPayData) {
- this.extendPayData = extendPayData;
- }
- public string getRiskCheckData() {
- return riskCheckData;
- }
- public void setRiskCheckData(string riskCheckData) {
- this.riskCheckData = riskCheckData;
- }
- public string getTerminalDeviceData() {
- return terminalDeviceData;
- }
- public void setTerminalDeviceData(string terminalDeviceData) {
- this.terminalDeviceData = terminalDeviceData;
- }
- public string getNotifyUrl() {
- return notifyUrl;
- }
- public void setNotifyUrl(string notifyUrl) {
- this.notifyUrl = notifyUrl;
- }
- }
- }
|