1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using Aop.Api.Response;
- using Com.Alipay.Model;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace F2FPayDll.Business
- {
- public class AlipayF2FRefundQueryResult
- {
- public AlipayF2FRefundQueryResult()
- {
- //
- // TODO: 在此处添加构造函数逻辑
- //
- }
- public AlipayTradeFastpayRefundQueryResponse response { get; set; }
- public ResultEnum Status
- {
- get
- {
- if (response != null)
- {
- if (response.Code == ResultCode.SUCCESS)
- {
- return ResultEnum.SUCCESS;
- }
- if (response.Code == ResultCode.ERROR)
- {
- return ResultEnum.UNKNOWN;
- }
- else
- return ResultEnum.FAILED;
- }
- else
- {
- return ResultEnum.UNKNOWN;
- }
- }
- }
- }
- }
|