123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- using System;
- namespace BasePaySdk.Request
- {
- /**
- * 服务单创建
- *
- * @author sdk-generator
- * @Description
- */
- public class V2TradePayafteruseCreditbizorderCreateRequest : BaseRequest
- {
- /**
- * 请求流水号
- */
- private string reqSeqId;
- /**
- * 请求日期
- */
- private string reqDate;
- /**
- * 商户号
- */
- private string huifuId;
- /**
- * 订单总金额
- */
- private string transAmt;
- /**
- * 追踪ID
- */
- private string sourceId;
- /**
- * 支付宝用户ID
- */
- private string buyerId;
- /**
- * 订单标题
- */
- private string title;
- /**
- * 订单类型
- */
- private string merchantBizType;
- /**
- * 订单详情地址
- */
- private string path;
- /**
- * 芝麻信用服务ID
- */
- private string zmServiceId;
- /**
- * 商品详细信息
- */
- private string itemInfos;
- public override string getFunctionCode()
- {
- return FunctionCodeEnum.V2_TRADE_PAYAFTERUSE_CREDITBIZORDER_CREATE;
- }
- public V2TradePayafteruseCreditbizorderCreateRequest()
- {
- }
- public V2TradePayafteruseCreditbizorderCreateRequest(string reqSeqId, string reqDate, string huifuId, string transAmt, string sourceId, string buyerId, string title, string merchantBizType, string path, string zmServiceId, string itemInfos)
- {
- this.reqSeqId = reqSeqId;
- this.reqDate = reqDate;
- this.huifuId = huifuId;
- this.transAmt = transAmt;
- this.sourceId = sourceId;
- this.buyerId = buyerId;
- this.title = title;
- this.merchantBizType = merchantBizType;
- this.path = path;
- this.zmServiceId = zmServiceId;
- this.itemInfos = itemInfos;
- }
- public string getReqSeqId()
- {
- return reqSeqId;
- }
- public void setReqSeqId(string reqSeqId)
- {
- this.reqSeqId = reqSeqId;
- }
- public string getReqDate()
- {
- return reqDate;
- }
- public void setReqDate(string reqDate)
- {
- this.reqDate = reqDate;
- }
- public string getHuifuId()
- {
- return huifuId;
- }
- public void setHuifuId(string huifuId)
- {
- this.huifuId = huifuId;
- }
- public string getTransAmt()
- {
- return transAmt;
- }
- public void setTransAmt(string transAmt)
- {
- this.transAmt = transAmt;
- }
- public string getSourceId()
- {
- return sourceId;
- }
- public void setSourceId(string sourceId)
- {
- this.sourceId = sourceId;
- }
- public string getBuyerId()
- {
- return buyerId;
- }
- public void setBuyerId(string buyerId)
- {
- this.buyerId = buyerId;
- }
- public string getTitle()
- {
- return title;
- }
- public void setTitle(string title)
- {
- this.title = title;
- }
- public string getMerchantBizType()
- {
- return merchantBizType;
- }
- public void setMerchantBizType(string merchantBizType)
- {
- this.merchantBizType = merchantBizType;
- }
- public string getPath()
- {
- return path;
- }
- public void setPath(string path)
- {
- this.path = path;
- }
- public string getZmServiceId()
- {
- return zmServiceId;
- }
- public void setZmServiceId(string zmServiceId)
- {
- this.zmServiceId = zmServiceId;
- }
- public string getItemInfos()
- {
- return itemInfos;
- }
- public void setItemInfos(string itemInfos)
- {
- this.itemInfos = itemInfos;
- }
- }
- }
|