알림 전체닫기 오류 수정

This commit is contained in:
Macbook
2026-06-04 13:00:59 +09:00
parent 5740a9a59d
commit 128b589369
16 changed files with 513 additions and 126 deletions
@@ -240,6 +240,21 @@ public class GcAppSettings {
@Column(name = "upbit_secret_key", length = 256)
private String upbitSecretKey;
/**
* 미체결 주문 체결 모드.
* LIMIT_ONLY : 지정가 조건 충족 시에만 체결 (기본값)
* NEXT_TICK : 다음 시세 틱에서 무조건 체결
* AUTO_CANCEL : 주문가 대비 paper_order_auto_cancel_pct % 초과 이탈 시 자동 취소
*/
@Column(name = "paper_order_fill_mode", nullable = false, length = 20)
@Builder.Default
private String paperOrderFillMode = "LIMIT_ONLY";
/** AUTO_CANCEL 모드의 허용 이탈폭 (%) */
@Column(name = "paper_order_auto_cancel_pct", nullable = false, precision = 8, scale = 4)
@Builder.Default
private BigDecimal paperOrderAutoCancelPct = BigDecimal.valueOf(1.0);
/** BACKEND_STOMP | UPBIT_DIRECT */
@Column(name = "chart_realtime_source", nullable = false, length = 20)
@Builder.Default