추세검색 설정 추가

This commit is contained in:
Macbook
2026-05-27 01:36:06 +09:00
parent c1bcf88c6c
commit 2e08c6b16f
42 changed files with 1507 additions and 226 deletions
@@ -184,6 +184,11 @@ public class GcAppSettings {
@Builder.Default
private BigDecimal paperAutoTradeBudgetPct = BigDecimal.valueOf(95);
/** 가상매매 투자대상 목록 최대 종목 수 */
@Column(name = "virtual_target_max_count", nullable = false)
@Builder.Default
private Integer virtualTargetMaxCount = 20;
/** PAPER | LIVE | BOTH — 자동매매 실행 대상 */
@Column(name = "trading_mode", nullable = false, length = 10)
@Builder.Default
@@ -213,6 +218,11 @@ public class GcAppSettings {
@Builder.Default
private Boolean fcmPushEnabled = false;
/** 추세검색 기본 설정 JSON */
@Column(name = "trend_search_settings_json", columnDefinition = "JSON")
@JdbcTypeCode(SqlTypes.JSON)
private String trendSearchSettingsJson;
@Column(name = "created_at", nullable = false, updatable = false)
private LocalDateTime createdAt;