package incheon.ags.mrb.analysis.vo;

import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
@Schema(description = "공간 분석 이력 상세")
public class AnlsHstryDtlVO {

    @Schema(description = "분석 이력 ID")
    Integer anlsHstryId;

    @Schema(description = "분석 소스 레이어 이름")
    String anlsSourcLyrNm;

    @Schema(description = "분석 경계 레이어 이름")
    String anlsBndryLyrNm;

    @Schema(description = "분석 옵션 JSON")
    String anlsPption;
}
