南昌市物联网技防平台-公安版
zengh
2021-06-19 b95d1ce682169f855c75b2d3aedbc03ebc9e31ed
精度丢失问题修复
1 files modified
6 ■■■■■ changed files
blade-service/blade-jfpts/src/main/java/org/springblade/jfpt/chatrecords/entity/ChatRecords.java 6 ●●●●● patch | view | raw | blame | history
blade-service/blade-jfpts/src/main/java/org/springblade/jfpt/chatrecords/entity/ChatRecords.java
@@ -59,13 +59,15 @@
     */
    @NotNull(message = "发送消息人id不能为空")
    @TableField("sender_id")
    private String senderId;
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long senderId;
    /**
     * 接收消息人id
     * @NotNull(message = "接收消息人id不能为空")
     */
    @TableField("recipient_id")
    private String recipientId;
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long recipientId;
}