Kaynağa Gözat

删除多余文件

lcl 1 yıl önce
ebeveyn
işleme
a3ef424511

+ 0 - 137
AppStart/Alipay/Request/AlipaySystemOauthTokenRequest.cs

@@ -1,137 +0,0 @@
-// using System;
-// using System.Collections.Generic;
-// using Aop.Api.Response;
-
-// namespace Aop.Api.Request
-// {
-//     /// <summary>
-//     /// AOP API: alipay.system.oauth.token
-//     /// </summary>
-//     public class AlipaySystemOauthTokenRequest : IAopRequest<AlipaySystemOauthTokenResponse>
-//     {
-//         /// <summary>
-//         /// 授权码,用户对应用授权后得到。本参数在 grant_type 为 authorization_code 时必填;为 refresh_token 时不填。
-//         /// </summary>
-//         public string Code { get; set; }
-
-//         /// <summary>
-//         /// 授权方式。支持: 1.authorization_code,表示换取使用用户授权码code换取授权令牌access_token。 2.refresh_token,表示使用refresh_token刷新获取新授权令牌。
-//         /// </summary>
-//         public string GrantType { get; set; }
-
-//         /// <summary>
-//         /// 刷新令牌,上次换取访问令牌时得到。本参数在 grant_type 为 authorization_code 时不填;为 refresh_token 时必填,且该值来源于此接口的返回值 app_refresh_token(即至少需要通过 grant_type=authorization_code 调用此接口一次才能获取)。
-//         /// </summary>
-//         public string RefreshToken { get; set; }
-
-//         #region IAopRequest Members
-//         private bool  needEncrypt=false;
-//         private string apiVersion = "1.0";
-// 	    private string terminalType;
-// 	    private string terminalInfo;
-//         private string prodCode;
-// 	    private string notifyUrl;
-//         private string returnUrl;
-// 	    private AopObject bizModel;
-//         private Dictionary<string, string> udfParams; //add user-defined text parameters
-
-// 		public void SetNeedEncrypt(bool needEncrypt){
-//              this.needEncrypt=needEncrypt;
-//         }
-
-//         public bool GetNeedEncrypt(){
-
-//             return this.needEncrypt;
-//         }
-
-// 		public void SetNotifyUrl(string notifyUrl){
-//             this.notifyUrl = notifyUrl;
-//         }
-
-//         public string GetNotifyUrl(){
-//             return this.notifyUrl;
-//         }
-
-//         public void SetReturnUrl(string returnUrl){
-//             this.returnUrl = returnUrl;
-//         }
-
-//         public string GetReturnUrl(){
-//             return this.returnUrl;
-//         }
-
-//         public void SetTerminalType(String terminalType){
-// 			this.terminalType=terminalType;
-// 		}
-
-//     	public string GetTerminalType(){
-//     		return this.terminalType;
-//     	}
-
-//     	public void SetTerminalInfo(String terminalInfo){
-//     		this.terminalInfo=terminalInfo;
-//     	}
-
-//     	public string GetTerminalInfo(){
-//     		return this.terminalInfo;
-//     	}
-
-//         public void SetProdCode(String prodCode){
-//             this.prodCode=prodCode;
-//         }
-
-//         public string GetProdCode(){
-//             return this.prodCode;
-//         }
-
-//         public string GetApiName()
-//         {
-//             return "alipay.system.oauth.token";
-//         }
-
-//         public void SetApiVersion(string apiVersion){
-//             this.apiVersion=apiVersion;
-//         }
-
-//         public string GetApiVersion(){
-//             return this.apiVersion;
-//         }
-
-//         public void PutOtherTextParam(string key, string value) 
-//         {
-//             if(this.udfParams == null) 
-//             {
-//                 this.udfParams = new Dictionary<string, string>();
-//             }
-//             this.udfParams.Add(key, value);
-//         }
-
-//         public IDictionary<string, string> GetParameters()
-//         {
-//             AopDictionary parameters = new AopDictionary();
-//             parameters.Add("code", this.Code);
-//             parameters.Add("grant_type", this.GrantType);
-//             parameters.Add("refresh_token", this.RefreshToken);
-//             if(udfParams != null) 
-//             {
-//                 foreach(string key in this.udfParams.Keys)
-//                 {
-//                     parameters.Add(key, this.udfParams[key]);
-//                 }
-//             }
-//             return parameters;
-//         }
-
-// 		public AopObject GetBizModel()
-//         {
-//             return this.bizModel;
-//         }
-
-//         public void SetBizModel(AopObject bizModel)
-//         {
-//             this.bizModel = bizModel;
-//         }
-
-//         #endregion
-//     }
-// }

+ 0 - 71
AppStart/Alipay/Response/AlipaySystemOauthTokenResponse.cs

@@ -1,71 +0,0 @@
-// using System;
-// using System.Xml.Serialization;
-
-// namespace Aop.Api.Response
-// {
-//     /// <summary>
-//     /// AlipaySystemOauthTokenResponse.
-//     /// </summary>
-//     public class AlipaySystemOauthTokenResponse : AopResponse
-//     {
-//         /// <summary>
-//         /// 访问令牌。通过该令牌调用需要授权类接口
-//         /// </summary>
-//         [XmlElement("access_token")]
-//         public string AccessToken { get; set; }
-
-//         /// <summary>
-//         /// 已废弃,请勿使用
-//         /// </summary>
-//         [XmlElement("alipay_user_id")]
-//         public string AlipayUserId { get; set; }
-
-//         /// <summary>
-//         /// 授权token开始时间,作为有效期计算的起点
-//         /// </summary>
-//         [XmlElement("auth_start")]
-//         public string AuthStart { get; set; }
-
-//         /// <summary>
-//         /// 令牌类型,permanent表示返回的access_token和refresh_token永久有效,非永久令牌不返回该字段
-//         /// </summary>
-//         [XmlElement("auth_token_type")]
-//         public string AuthTokenType { get; set; }
-
-//         /// <summary>
-//         /// 访问令牌的有效时间,单位是秒。
-//         /// </summary>
-//         [XmlElement("expires_in")]
-//         public string ExpiresIn { get; set; }
-
-//         /// <summary>
-//         /// 支付宝用户唯一标识
-//         /// </summary>
-//         [XmlElement("open_id")]
-//         public string OpenId { get; set; }
-
-//         /// <summary>
-//         /// 刷新令牌的有效时间,单位是秒。
-//         /// </summary>
-//         [XmlElement("re_expires_in")]
-//         public string ReExpiresIn { get; set; }
-
-//         /// <summary>
-//         /// 刷新令牌。通过该令牌可以刷新access_token
-//         /// </summary>
-//         [XmlElement("refresh_token")]
-//         public string RefreshToken { get; set; }
-
-//         /// <summary>
-//         /// union_id是支付宝用户在开放平台的唯一标识符,在配置应用分组后会返回该值。 同一用户的union_id在同一分组内应用保持一致。
-//         /// </summary>
-//         [XmlElement("union_id")]
-//         public string UnionId { get; set; }
-
-//         /// <summary>
-//         /// 支付宝用户的唯一标识。以2088开头的16位数字。
-//         /// </summary>
-//         [XmlElement("user_id")]
-//         public string UserId { get; set; }
-//     }
-// }