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 UserLyrVO {
    @Schema(description = "사용자 레이어 ID")
    Integer userLyrId;

    @Schema(description = "사용자 ID")
    String userId;

    @Schema(description = "사용자 레이어 이름")
    String userLyrNm;

    @Schema(description = "사용자 레이어 설명")
    String userLyrExpln;

	@Schema(description = "레이어 물리 명")
	String lyrPhysNm;

    @Schema(description = "레이어 서비스 접두어")
    String lyrSrvcPrefix;

    @Schema(description = "레이어 서비스 명")
    String lyrSrvcNm;

    @Schema(description = "레이어 그룹 코드")
    String lyrGroupCd;

    @Schema(description = "좌표계", example = "3857")
    short cntm;

    @Schema(description = "공간 타입", example = "MULTIPOLYGON")
    String spceTy;

    @Schema(description = "생성 ID")
    String crtId;

    @Schema(description = "변경 ID")
    String chgId;
}
