package incheon.ags.dtad.vo;


import java.sql.Timestamp;

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

/**
 * @Class Name : DtadDtmVO.java
 * @Description : dtad VO class
 * @Modification Information
 * @
 * @  수정일         수정자                   수정내용
 * @ -------    --------    ---------------------------
 * @ 2026.01.21    이진주          최초 생성
 *
 *  @author (주)올포랜드 이진주
 *  @since 2026.01.21
 *  @version 1.0
 *  @see
 *  
 */
@Schema(description = "수치지형도 관리자 페이지 - 수치지형도 등록관리VO")
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
public class DtadDtmVO {
	
	@Schema(description = "일련번호")
	private Integer mapSn;
	
	@Schema(description = "도엽번호")
	private String mapno;
	
	@Schema(description = "변경일련번호")
	private Integer chgSn;
	
	@Schema(description = "공개여부")
	private String rlsYn;
	
	@Schema(description = "축척구분")
	private String rdsclSe;
	
	@Schema(description = "파일경로")
	private String flpth;
	
	@Schema(description = "파일명")
	private String fileNm;
	
	@Schema(description = "파일확장자")
	private String fileExtnNm;
	
	@Schema(description = "등록자아이디")
	private String frstRegId;
	
	@Schema(description = "등록일자")
	private Timestamp frstRegDt;
	
	@Schema(description = "수정자아이디")
	private String lastMdfcnId;
	
	@Schema(description = "수정일자")
	private Timestamp lastMdfcnDt;
	
	@Schema(description = "좌표유형")
	private String cdType;
	
	@Schema(description = "콤보박스 타입")
	private String comboType; 
	
	@Schema(description = "코드 한글명")
	private String codeNm;
	
	@Schema(description = "작업 성공여부")
	private String succecsTyp;
	
	@Schema(description = "중복체크 여부")
	private String dupCheckYn;
	
	@Schema(description = "메시지")
	private String msg;
	
	@Schema(description = "폴더명")
	private String folderNm;
	
	//사용자정보
	@Schema(description = "사용자명")
	private String userNm;
	
	@Schema(description = "사용자명")
	private String userId;
}
