feat(constants): 添加KeyBatchStyle键码样式映射

- 增加了KeyBatchStyle映射结构
- 包含卡密、链接、二维码和白名单等键码样式
- 丰富了系统枚举类型定义
- 为后续功能开发提供基础数据支持
This commit is contained in:
zhouyonggao 2025-12-18 15:31:35 +08:00
parent 7b7dcc66d6
commit bc37922651
1 changed files with 8 additions and 0 deletions

View File

@ -129,6 +129,14 @@ var VoucherOpenMode = map[int]string{
2: "通用",
}
// KeyBatchStyle key码样式映射
var KeyBatchStyle = map[int]string{
1: "卡密",
2: "链接",
4: "二维码",
6: "白名单",
}
// ==================== 通用枚举 ====================
// ThirdPartyType 第三方类型映射