# 分摊信息类型 ## 请求参数 ### 参数说明 | 字段名称 | 字段类型 | 是否必填 | 字段说明 | | ---- | ---- | --- | ---- | | amortizationAmount | [AmountInput](amountInput.md) | 是 | 摊销金额 | | amortizationRatio | BigDecimal | 是 | 摊销比例 | | amortizationDate | String(100) | 是 | 摊销日期 | ### 参数样例 ```json [ { "amortizationAmount": { "currency": "CNY", "amount": 20, "amountStr": "20.00" }, "amortizationRatio": 20, "amortizationDate": "2024-05" }, { "amortizationAmount": { "currency": "CNY", "amount": 80, "amountStr": "80.00" }, "amortizationRatio": 80, "amortizationDate": "2024-06" } ] ``` ## 修改记录 ```text 2024-05-10 新增摊销类型文档 ```