123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- using System;
- namespace BasePaySdk.Request
- {
- /**
- * 微信商户配置
- *
- * @author sdk-generator
- * @Description
- */
- public class V2MerchantBusiConfigRequest : BaseRequest
- {
- /**
- * 请求流水号
- */
- private string reqSeqId;
- /**
- * 请求日期
- */
- private string reqDate;
- /**
- * 汇付客户Id
- */
- private string huifuId;
- /**
- * 业务开通类型
- */
- private string feeType;
- /**
- * 公众号支付Appid条件必填,<font color="green">示例值:wx3767c5bd01df5061</font> ;wx_woa_app_id 、wx_woa_path、micro_sub_appid和 wx_applet_app_id四者不能同时为空
- */
- private string wxWoaAppId;
- /**
- * 微信公众号授权目录条件必填,<font color="green">示例值:https://paas.huifu.com/shouyintai/demo/h5/</font>;wx_woa_app_id 、wx_woa_path、micro_sub_appid和 wx_applet_app_id四者不能同时为空
- */
- private string wxWoaPath;
- /**
- * 微信小程序APPID条件必填,<font color="green">示例值:wx8523175fea790f10</font> ;wx_woa_app_id 、wx_woa_path、micro_sub_appid和 wx_applet_app_id四者不能同时为空
- */
- private string wxAppletAppId;
- public override string getFunctionCode() {
- return FunctionCodeEnum.V2_MERCHANT_BUSI_CONFIG;
- }
- public V2MerchantBusiConfigRequest() {
- }
- public V2MerchantBusiConfigRequest(string reqSeqId, string reqDate, string huifuId, string feeType, string wxWoaAppId, string wxWoaPath, string wxAppletAppId) {
- this.reqSeqId = reqSeqId;
- this.reqDate = reqDate;
- this.huifuId = huifuId;
- this.feeType = feeType;
- this.wxWoaAppId = wxWoaAppId;
- this.wxWoaPath = wxWoaPath;
- this.wxAppletAppId = wxAppletAppId;
- }
- 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 getFeeType() {
- return feeType;
- }
- public void setFeeType(string feeType) {
- this.feeType = feeType;
- }
- public string getWxWoaAppId() {
- return wxWoaAppId;
- }
- public void setWxWoaAppId(string wxWoaAppId) {
- this.wxWoaAppId = wxWoaAppId;
- }
- public string getWxWoaPath() {
- return wxWoaPath;
- }
- public void setWxWoaPath(string wxWoaPath) {
- this.wxWoaPath = wxWoaPath;
- }
- public string getWxAppletAppId() {
- return wxAppletAppId;
- }
- public void setWxAppletAppId(string wxAppletAppId) {
- this.wxAppletAppId = wxAppletAppId;
- }
- }
- }
|