乘法 @param object @return
(Object object)
| 169 | * @return |
| 170 | */ |
| 171 | public Decimal mul(Object object) { |
| 172 | this.bigDecimal = this.bigDecimal.multiply(new Decimal(object).getBigDecimal(), mathContext); |
| 173 | return this; |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * 除法 |
nothing calls this directly
no test coverage detected