30 lines
765 B
Java
30 lines
765 B
Java
package com.goldenchart.dto;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
@Data
|
|
@Builder
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
|
public class LiveConditionRowDto {
|
|
|
|
private String id;
|
|
private String indicatorType;
|
|
private String displayName;
|
|
private String conditionType;
|
|
private String conditionLabel;
|
|
private String thresholdLabel;
|
|
private Double currentValue;
|
|
private Double targetValue;
|
|
/** true=충족, false=미충족, null=평가 불가 */
|
|
private Boolean satisfied;
|
|
private String timeframe;
|
|
/** buy | sell */
|
|
private String side;
|
|
}
|