- 新增 apiTokenUpdatePost 接口支持修改 Token 信息 - 扩展 Token 数据结构,增加充值金额限制和次数限制相关字段 - 调整新增/编辑 Token 弹窗,支持编辑模式下的充值限制显示和输入 - 新增绑定记录卡片视图与表格视图切换功能 - 绑定记录视图显示总记录数和总金额统计信息 - 卡片视图改进绑定记录样式和交互,支持复制卡号和卡密 - 弹窗样式和分页控件优化,提升用户体验 - 修复并完善 Api 文档,补充修改 Token 接口说明和示例代码
1.3 KiB
1.3 KiB
KamiApiCamelOilV1CardBindingInfo
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | number | 绑定记录ID | [optional] [default to undefined] |
| tokenId | number | Token ID | [optional] [default to undefined] |
| tokenName | string | Token名称 | [optional] [default to undefined] |
| orderId | number | 订单ID | [optional] [default to undefined] |
| cardNumber | string | 卡号 | [optional] [default to undefined] |
| cardPassword | string | 卡密 | [optional] [default to undefined] |
| amount | number | 绑定金额 | [optional] [default to undefined] |
| createdAt | string | 创建时间 | [optional] [default to undefined] |
Example
import { KamiApiCamelOilV1CardBindingInfo } from './api';
const instance: KamiApiCamelOilV1CardBindingInfo = {
id,
tokenId,
tokenName,
orderId,
cardNumber,
cardPassword,
amount,
createdAt
};