mobile download

This commit is contained in:
Macbook
2026-05-28 14:44:19 +09:00
parent e2816b037f
commit 3503ef33f5
152 changed files with 11021 additions and 687 deletions
@@ -0,0 +1,18 @@
package com.goldenchart.dto;
import lombok.Builder;
import lombok.Data;
@Data
@Builder
public class MobileAppReleaseInfoDto {
private boolean available;
private String fileName;
private String version;
private Long sizeBytes;
private String updatedAt;
/** 브라우저·QR 스캔용 절대 다운로드 URL */
private String downloadUrl;
/** 모바일 설치 안내 페이지 URL */
private String installPageUrl;
}
@@ -23,6 +23,9 @@ public class StrategyDto {
/** 매도 조건 LogicNode 트리 (JSON 그대로 직렬화) */
private JsonNode sellCondition;
/** 편집기 flow layout { buy, sell } — START 분봉·노드 좌표 등 */
private JsonNode flowLayout;
private Boolean enabled;
private LocalDateTime createdAt;
private LocalDateTime updatedAt;