package com.goldenchart.dto; import lombok.Builder; import lombok.Data; @Data @Builder public class PaperLedgerEntryDto { private Long id; private String entryType; private Double amount; private Double cashBefore; private Double cashAfter; private Long refTradeId; private String symbol; private String createdAt; }