-
-
Notifications
You must be signed in to change notification settings - Fork 489
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[支付宝] 同步 alipay-sdk-net-4.2.109(Domain、Request、Response) Closed #68
- Loading branch information
Showing
55 changed files
with
2,557 additions
and
221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
...soft.AspNetCore.Payment.Alipay/Domain/AlipayDataAiserviceCloudbusMetrodetailQueryModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
using System.Text.Json.Serialization; | ||
|
||
namespace Essensoft.AspNetCore.Payment.Alipay.Domain | ||
{ | ||
/// <summary> | ||
/// AlipayDataAiserviceCloudbusMetrodetailQueryModel Data Structure. | ||
/// </summary> | ||
public class AlipayDataAiserviceCloudbusMetrodetailQueryModel : AlipayObject | ||
{ | ||
/// <summary> | ||
/// 版本号 | ||
/// </summary> | ||
[JsonPropertyName("app_version")] | ||
public string AppVersion { get; set; } | ||
|
||
/// <summary> | ||
/// 市 | ||
/// </summary> | ||
[JsonPropertyName("city_code")] | ||
public string CityCode { get; set; } | ||
|
||
/// <summary> | ||
/// 6位目的地geohash | ||
/// </summary> | ||
[JsonPropertyName("dest_geo")] | ||
public string DestGeo { get; set; } | ||
|
||
/// <summary> | ||
/// 结束时间 | ||
/// </summary> | ||
[JsonPropertyName("end_date")] | ||
public string EndDate { get; set; } | ||
|
||
/// <summary> | ||
/// 进出站 0:进站 1:出站 | ||
/// </summary> | ||
[JsonPropertyName("is_out")] | ||
public long IsOut { get; set; } | ||
|
||
/// <summary> | ||
/// 商户ID | ||
/// </summary> | ||
[JsonPropertyName("partner_id")] | ||
public string PartnerId { get; set; } | ||
|
||
/// <summary> | ||
/// 开始年月 | ||
/// </summary> | ||
[JsonPropertyName("start_date")] | ||
public string StartDate { get; set; } | ||
|
||
/// <summary> | ||
/// 站点id | ||
/// </summary> | ||
[JsonPropertyName("station_id")] | ||
public string StationId { get; set; } | ||
|
||
/// <summary> | ||
/// 操作类型: 0:普通(默认) 1:潜在 | ||
/// </summary> | ||
[JsonPropertyName("type")] | ||
public long Type { get; set; } | ||
} | ||
} |
58 changes: 58 additions & 0 deletions
58
...ssensoft.AspNetCore.Payment.Alipay/Domain/AlipayDataAiserviceCloudbusMetroodQueryModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
using System.Text.Json.Serialization; | ||
|
||
namespace Essensoft.AspNetCore.Payment.Alipay.Domain | ||
{ | ||
/// <summary> | ||
/// AlipayDataAiserviceCloudbusMetroodQueryModel Data Structure. | ||
/// </summary> | ||
public class AlipayDataAiserviceCloudbusMetroodQueryModel : AlipayObject | ||
{ | ||
/// <summary> | ||
/// 接口版本号 | ||
/// </summary> | ||
[JsonPropertyName("app_version")] | ||
public string AppVersion { get; set; } | ||
|
||
/// <summary> | ||
/// 市 | ||
/// </summary> | ||
[JsonPropertyName("city_code")] | ||
public string CityCode { get; set; } | ||
|
||
/// <summary> | ||
/// 结束时间 | ||
/// </summary> | ||
[JsonPropertyName("end_date")] | ||
public string EndDate { get; set; } | ||
|
||
/// <summary> | ||
/// 进出站 0:进站 1:出站 | ||
/// </summary> | ||
[JsonPropertyName("is_out")] | ||
public long IsOut { get; set; } | ||
|
||
/// <summary> | ||
/// 商户ID | ||
/// </summary> | ||
[JsonPropertyName("partner_id")] | ||
public string PartnerId { get; set; } | ||
|
||
/// <summary> | ||
/// 开始年月 | ||
/// </summary> | ||
[JsonPropertyName("start_date")] | ||
public string StartDate { get; set; } | ||
|
||
/// <summary> | ||
/// 站点名称 | ||
/// </summary> | ||
[JsonPropertyName("station_id")] | ||
public string StationId { get; set; } | ||
|
||
/// <summary> | ||
/// 操作类型: 0:普通(默认) 1:潜在 | ||
/// </summary> | ||
[JsonPropertyName("type")] | ||
public long Type { get; set; } | ||
} | ||
} |
64 changes: 64 additions & 0 deletions
64
...ensoft.AspNetCore.Payment.Alipay/Domain/AlipayDataAiserviceCloudbusMetrotimeQueryModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
using System.Text.Json.Serialization; | ||
|
||
namespace Essensoft.AspNetCore.Payment.Alipay.Domain | ||
{ | ||
/// <summary> | ||
/// AlipayDataAiserviceCloudbusMetrotimeQueryModel Data Structure. | ||
/// </summary> | ||
public class AlipayDataAiserviceCloudbusMetrotimeQueryModel : AlipayObject | ||
{ | ||
/// <summary> | ||
/// 接口版本号 | ||
/// </summary> | ||
[JsonPropertyName("app_version")] | ||
public string AppVersion { get; set; } | ||
|
||
/// <summary> | ||
/// 市 | ||
/// </summary> | ||
[JsonPropertyName("city_code")] | ||
public string CityCode { get; set; } | ||
|
||
/// <summary> | ||
/// 6位目的地geohash | ||
/// </summary> | ||
[JsonPropertyName("dest_geo")] | ||
public string DestGeo { get; set; } | ||
|
||
/// <summary> | ||
/// 结束年月 | ||
/// </summary> | ||
[JsonPropertyName("end_date")] | ||
public string EndDate { get; set; } | ||
|
||
/// <summary> | ||
/// 进出站 0:进站 1:出站 | ||
/// </summary> | ||
[JsonPropertyName("is_out")] | ||
public long IsOut { get; set; } | ||
|
||
/// <summary> | ||
/// 商户ID | ||
/// </summary> | ||
[JsonPropertyName("partner_id")] | ||
public string PartnerId { get; set; } | ||
|
||
/// <summary> | ||
/// 开始年月 | ||
/// </summary> | ||
[JsonPropertyName("start_date")] | ||
public string StartDate { get; set; } | ||
|
||
/// <summary> | ||
/// 地铁站名称 | ||
/// </summary> | ||
[JsonPropertyName("station_id")] | ||
public string StationId { get; set; } | ||
|
||
/// <summary> | ||
/// 操作类型: 0:普通(默认) 1:潜在 | ||
/// </summary> | ||
[JsonPropertyName("type")] | ||
public long Type { get; set; } | ||
} | ||
} |
22 changes: 0 additions & 22 deletions
22
...soft.AspNetCore.Payment.Alipay/Domain/AlipayDataDataserviceAntdacEasyserviceQueryModel.cs
This file was deleted.
Oops, something went wrong.
52 changes: 0 additions & 52 deletions
52
...nsoft.AspNetCore.Payment.Alipay/Domain/AlipayDataDataserviceLbsDiscountBatchqueryModel.cs
This file was deleted.
Oops, something went wrong.
40 changes: 40 additions & 0 deletions
40
...t.AspNetCore.Payment.Alipay/Domain/AlipayOpenContentContentlibYoukuvideoauditSendModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
using System.Text.Json.Serialization; | ||
|
||
namespace Essensoft.AspNetCore.Payment.Alipay.Domain | ||
{ | ||
/// <summary> | ||
/// AlipayOpenContentContentlibYoukuvideoauditSendModel Data Structure. | ||
/// </summary> | ||
public class AlipayOpenContentContentlibYoukuvideoauditSendModel : AlipayObject | ||
{ | ||
/// <summary> | ||
/// 审核后状态:allowed 审核通 过,blocked 屏蔽驳回, censoring 审核中 | ||
/// </summary> | ||
[JsonPropertyName("action")] | ||
public string Action { get; set; } | ||
|
||
/// <summary> | ||
/// 扩展信息,json格式 | ||
/// </summary> | ||
[JsonPropertyName("ext_info")] | ||
public string ExtInfo { get; set; } | ||
|
||
/// <summary> | ||
/// 审核前状态:allowed 审核通 过,blocked 屏蔽驳回, censoring 审核中 | ||
/// </summary> | ||
[JsonPropertyName("old_action")] | ||
public string OldAction { get; set; } | ||
|
||
/// <summary> | ||
/// 审核来源,1表示审核-一审、 2表示审核-二审、3表示审核- 三审、4表示审核-综合审、 5表示审核-修改审, 30表示播 控, 31表示版权解除屏蔽操 作,32VMS解屏蔽,33表示视 频替换 40来疯先发后审 41 表 示来疯审核 | ||
/// </summary> | ||
[JsonPropertyName("source")] | ||
public string Source { get; set; } | ||
|
||
/// <summary> | ||
/// 视频ID | ||
/// </summary> | ||
[JsonPropertyName("vid")] | ||
public string Vid { get; set; } | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
...sensoft.AspNetCore.Payment.Alipay/Domain/AlipayOverseasTravelFliggyAuthorityQueryModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
using System.Text.Json.Serialization; | ||
|
||
namespace Essensoft.AspNetCore.Payment.Alipay.Domain | ||
{ | ||
/// <summary> | ||
/// AlipayOverseasTravelFliggyAuthorityQueryModel Data Structure. | ||
/// </summary> | ||
public class AlipayOverseasTravelFliggyAuthorityQueryModel : AlipayObject | ||
{ | ||
/// <summary> | ||
/// 支付宝运营店ID | ||
/// </summary> | ||
[JsonPropertyName("global_shop_id")] | ||
public string GlobalShopId { get; set; } | ||
|
||
/// <summary> | ||
/// 登录账户的操作员ID | ||
/// </summary> | ||
[JsonPropertyName("operator_id")] | ||
public string OperatorId { get; set; } | ||
|
||
/// <summary> | ||
/// 用户类型: 主账户 or 操作员. 主账号:MAIN_ACCOUNT 操作员:OPERATOR | ||
/// </summary> | ||
[JsonPropertyName("operator_type")] | ||
public string OperatorType { get; set; } | ||
|
||
/// <summary> | ||
/// 登录账户归属的机构PID | ||
/// </summary> | ||
[JsonPropertyName("owner_id")] | ||
public string OwnerId { get; set; } | ||
|
||
/// <summary> | ||
/// 飞猪门店ID | ||
/// </summary> | ||
[JsonPropertyName("store_id")] | ||
public string StoreId { get; set; } | ||
} | ||
} |
Oops, something went wrong.