1
0

feat: 增加一点测试

This commit is contained in:
2025-09-17 23:32:05 +08:00
parent 5953c9b9f2
commit 19dd19a9f8
3 changed files with 49 additions and 186 deletions

View File

@@ -55,4 +55,20 @@ public class Daily extends SimpleEntity {
@JoinColumn(nullable = false)
@ToString.Exclude
private Stock stock;
public Double getHfqOpen() {
return open * factor;
}
public Double getHfqClose() {
return close * factor;
}
public Double getHfqHigh() {
return high * factor;
}
public Double getHfqLow() {
return low * factor;
}
}