mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-16 07:59:44 +08:00
feat(wxapi): bump version to v2.2.1
This commit is contained in:
parent
0e3ee28781
commit
673c590813
@ -32,6 +32,10 @@
|
||||
|
||||
<summary>[展开查看]</summary>
|
||||
|
||||
- Release 2.2.1
|
||||
|
||||
- **修复**:修复获取会员卡信息接口模型的字段缺失问题。([Gitee PR #3](https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat/pulls/3))。
|
||||
|
||||
- Release 2.2.0
|
||||
|
||||
- **新增**:新增小程序硬件设备相关接口。
|
||||
@ -412,7 +416,7 @@
|
||||
|
||||
- Release 1.3.3
|
||||
|
||||
- **修复**:修复批量获取客户详情时的请求模型定义错误。([GitHub Issue #9](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat/pull/9))
|
||||
- **修复**:修复批量获取客户详情时的请求模型定义错误。([GitHub PR #9](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat/pull/9))
|
||||
|
||||
- Release 1.3.2
|
||||
|
||||
@ -420,7 +424,7 @@
|
||||
|
||||
- Release 1.3.1
|
||||
|
||||
- **修复**:修复获取服务商凭证接口请求模型定义错误。([GitHub Issue #5](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat/pull/5))
|
||||
- **修复**:修复获取服务商凭证接口请求模型定义错误。([GitHub PR #5](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat/pull/5))
|
||||
|
||||
- Release 1.3.0
|
||||
|
||||
|
@ -1,9 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /card/membercard/userinfo/get 接口的响应。</para>
|
||||
@ -68,6 +63,13 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
[System.Text.Json.Serialization.JsonPropertyName("nickname")]
|
||||
public string Nickname { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置用户性别。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("sex")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("sex")]
|
||||
public string Sex { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置会员卡编号。
|
||||
/// </summary>
|
||||
@ -102,12 +104,5 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
[Newtonsoft.Json.JsonProperty("user_card_status")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("user_card_status")]
|
||||
public string CardStatus { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置用户性别。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("sex")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("sex")]
|
||||
public string MemberSex { get; set; } = default!;
|
||||
}
|
||||
}
|
||||
|
@ -12,7 +12,7 @@
|
||||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||
<PackageProjectUrl>https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat</PackageProjectUrl>
|
||||
<PackageTags>Flurl.Http Wechat Weixin MicroMessage MiniProgram MiniGame MiniStore 微信 公众号 服务号 订阅号 小程序 小游戏 小商店 公众平台 开放平台 微信公众号 微信服务号 微信订阅号 微信小程序 微信小游戏 微信小商店 微信公众平台 微信开放平台</PackageTags>
|
||||
<Version>2.2.0</Version>
|
||||
<Version>2.2.1</Version>
|
||||
<Description>基于 Flurl.Http 的微信 API 客户端,支持公众平台(订阅号、服务号、小程序、小游戏、小商店)、开放平台等平台,支持基础服务、模板消息、订阅消息、客服消息、动态消息、菜单管理、素材管理、留言管理、用户管理、账号管理、草稿箱、发布能力、数据统计、微信门店、微信小店、智能接口、一物一码、微信发票、微信非税缴费、插件管理、附近的小程序、小程序码、小程序搜索、URL Scheme、URL Link、即时配送、物流助手、直播、生物认证、虚拟支付、开放数据、对局匹配、帧同步、内容安全、安全风控、第三方平台等功能。</Description>
|
||||
<Authors>Fu Diwei</Authors>
|
||||
<RepositoryType>git</RepositoryType>
|
||||
|
Loading…
Reference in New Issue
Block a user