feat(channel): add WECOM_BOT account type

This commit is contained in:
2026-07-14 17:05:27 +08:00
parent 93df416954
commit 895c78d60e

View File

@@ -5,7 +5,8 @@ public enum AccountType {
WECOM_AGENT(2, "企微应用"),
WECHAT_PERSONAL(3, "pywechat 个人号"),
DINGTALK_BOT(4, "钉钉机器人"),
FEISHU_BOT(5, "飞书机器人");
FEISHU_BOT(5, "飞书机器人"),
WECOM_BOT(6, "企微群机器人");
private final int code;
private final String label;