모의투자 관리 기능 추가

This commit is contained in:
Macbook
2026-05-31 03:47:07 +09:00
parent 9d7dddfa57
commit 16d0e2c226
78 changed files with 4688 additions and 972 deletions
@@ -0,0 +1,17 @@
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;
}