|  |  | 
 |  |  |  | 
 |  |  | import com.alibaba.fastjson2.annotation.JSONField; | 
 |  |  | import com.alibaba.fastjson2.writer.ObjectWriterImplToString; | 
 |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
 |  |  | import com.fasterxml.jackson.annotation.JsonPropertyOrder; | 
 |  |  | import lombok.Data; | 
 |  |  |  | 
 |  |  | 
 |  |  |     /** | 
 |  |  |      * 充值金额合计 | 
 |  |  |      */ | 
 |  |  |     @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" ) | 
 |  |  |     private Float totalRecharge; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 消费金额合计 | 
 |  |  |      */ | 
 |  |  |     @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" ) | 
 |  |  |     private Float totalConsumption; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 余额 | 
 |  |  |      */ | 
 |  |  |     @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" ) | 
 |  |  |     private Float balance; | 
 |  |  | } |