feat(wechat): Optimize wecom
@ -64,7 +64,7 @@ public class ApprovalControlValue
[CanBeNull]
[JsonProperty("selector")]
[JsonPropertyName("selector")]
public SelectorControlValue Selector { get; set; }
public SelectorValue Selector { get; set; }
/// <summary>
/// 关联审批单
/// </summary>
@ -88,8 +88,8 @@ public class SelectorValueOption
/// 选项值,若配置了多语言则会包含中英文的选项值
[NotNull]
[JsonProperty("key")]
[JsonPropertyName("key")]
[JsonProperty("value")]
[JsonPropertyName("value")]
public List<SelectorValueOptionValue> Value { get; set; }
public SelectorValueOption()
{
@ -4,17 +4,17 @@ public static class AbpWeChatWorkClaimTypes
/// 唯一标识
public static string UserId { get; set; } = "userid";
public static string UserId { get; set; } = "wecom_userid";
/// 二维码名片
public static string QrCode { get; set; } = "qr_code";
public static string QrCode { get; set; } = "wecom_qr_code";
/// 企业邮箱
public static string BizMail { get; set; } = "biz_mail";
public static string BizMail { get; set; } = "wecom_biz_mail";
/// 地址
public static string Address { get; set; } = "address";
public static string Address { get; set; } = "wecom_address";
}