feat(wxapi): 新增视频号小店团长商品审核接口

This commit is contained in:
Fu Diwei
2024-04-29 21:47:27 +08:00
parent 00df2ad813
commit cf55f66d18
4 changed files with 348 additions and 282 deletions

View File

@@ -0,0 +1,29 @@
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
{
/// <summary>
/// <para>表示 [POST] /channels/ec/league/headsupplier/item/upd 接口的请求。</para>
/// </summary>
public class ChannelsECLeagueHeadSupplierItemUpdateRequest : WechatApiRequest, IInferable<ChannelsECLeagueHeadSupplierItemUpdateRequest, ChannelsECLeagueHeadSupplierItemUpdateResponse>
{
/// <summary>
/// 获取或设置小店 AppId。
/// </summary>
[Newtonsoft.Json.JsonProperty("appid")]
[System.Text.Json.Serialization.JsonPropertyName("appid")]
public string AppId { get; set; } = string.Empty;
/// <summary>
/// 获取或设置商品 ID。
/// </summary>
[Newtonsoft.Json.JsonProperty("product_id")]
[System.Text.Json.Serialization.JsonPropertyName("product_id")]
public long ProductId { get; set; }
/// <summary>
/// 获取或设置操作类型。
/// </summary>
[Newtonsoft.Json.JsonProperty("type")]
[System.Text.Json.Serialization.JsonPropertyName("type")]
public int Type { get; set; }
}
}

View File

@@ -0,0 +1,9 @@
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
{
/// <summary>
/// <para>表示 [POST] /channels/ec/league/headsupplier/item/upd 接口的响应。</para>
/// </summary>
public class ChannelsECLeagueHeadSupplierItemUpdateResponse : WechatApiResponse
{
}
}