How to map Postgres JSON data type in DTO and Aggentity class using Springboot and Hibernate
- 阅读更多 关于 How to map Postgres JSON data type in DTO and Aggentity class using Springboot and Hibernate
问题 I have a ResponseDto class which looks like as below: public static class HealthGoalsHighlight { @ApiModelProperty(value = "Total number of eligible users") private Long totalEligibleUsers; @ApiModelProperty(value = "Total number of registered users") private Long totalRegisteredUsers; @ApiModelProperty(value = "Total number of users with atleast one goal count") private Long totalUsersWithGoal; @ApiModelProperty(value = "Top goal name selected by user") private String topGoal;