12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- using System;
- namespace BasePaySdk.Request
- {
- /**
- * 查询投诉单列表及详情
- *
- * @author sdk-generator
- * @Description
- */
- public class V2MerchantComplaintListInfoQueryRequest : BaseRequest
- {
- /**
- * 请求流水号
- */
- private string reqSeqId;
- /**
- * 请求时间
- */
- private string reqDate;
- /**
- * 开始日期
- */
- private string beginDate;
- /**
- * 结束日期
- */
- private string endDate;
- public override string getFunctionCode() {
- return FunctionCodeEnum.V2_MERCHANT_COMPLAINT_LIST_INFO_QUERY;
- }
- public V2MerchantComplaintListInfoQueryRequest() {
- }
- public V2MerchantComplaintListInfoQueryRequest(string reqSeqId, string reqDate, string beginDate, string endDate) {
- this.reqSeqId = reqSeqId;
- this.reqDate = reqDate;
- this.beginDate = beginDate;
- this.endDate = endDate;
- }
- 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 getBeginDate() {
- return beginDate;
- }
- public void setBeginDate(string beginDate) {
- this.beginDate = beginDate;
- }
- public string getEndDate() {
- return endDate;
- }
- public void setEndDate(string endDate) {
- this.endDate = endDate;
- }
- }
- }
|