투자관리 화면 수정
This commit is contained in:
@@ -48,6 +48,38 @@ public class GcPaperSymbolAllocation {
|
||||
@Builder.Default
|
||||
private Integer sortOrder = 0;
|
||||
|
||||
@Column(name = "buy_stage1_krw", precision = 20, scale = 2, nullable = false)
|
||||
@Builder.Default
|
||||
private BigDecimal buyStage1Krw = BigDecimal.ZERO;
|
||||
|
||||
@Column(name = "buy_stage2_krw", precision = 20, scale = 2, nullable = false)
|
||||
@Builder.Default
|
||||
private BigDecimal buyStage2Krw = BigDecimal.ZERO;
|
||||
|
||||
@Column(name = "buy_stage3_krw", precision = 20, scale = 2, nullable = false)
|
||||
@Builder.Default
|
||||
private BigDecimal buyStage3Krw = BigDecimal.ZERO;
|
||||
|
||||
@Column(name = "sell_stage1_krw", precision = 20, scale = 2, nullable = false)
|
||||
@Builder.Default
|
||||
private BigDecimal sellStage1Krw = BigDecimal.ZERO;
|
||||
|
||||
@Column(name = "sell_stage2_krw", precision = 20, scale = 2, nullable = false)
|
||||
@Builder.Default
|
||||
private BigDecimal sellStage2Krw = BigDecimal.ZERO;
|
||||
|
||||
@Column(name = "sell_stage3_krw", precision = 20, scale = 2, nullable = false)
|
||||
@Builder.Default
|
||||
private BigDecimal sellStage3Krw = BigDecimal.ZERO;
|
||||
|
||||
@Column(name = "buy_stage_done", nullable = false)
|
||||
@Builder.Default
|
||||
private Integer buyStageDone = 0;
|
||||
|
||||
@Column(name = "sell_stage_done", nullable = false)
|
||||
@Builder.Default
|
||||
private Integer sellStageDone = 0;
|
||||
|
||||
@Column(name = "created_at", nullable = false, updatable = false)
|
||||
private LocalDateTime createdAt;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user