I use `5.2.0` in grails `3.3.3`. Here is my jsonb velue in database: ```json { "orderId": 890 } ``` But when I get from domain, I find it has been converted to float, why ? ```groovy Domain domain = Domain.first() domain.params.orderId // print 890.0 ```
I use
5.2.0in grails3.3.3.Here is my jsonb velue in database:
{ "orderId": 890 }But when I get from domain, I find it has been converted to float, why ?