엑셀 다운로드, 기본 로직, 다운로드 로직에 제목 추가 로직 예정
parent
bd3221fcc7
commit
b495bcc71e
@ -0,0 +1,96 @@
|
||||
package go.kr.project.crdn.crndRegistAndView.main.model;
|
||||
|
||||
import egovframework.util.excel.ExcelColumn;
|
||||
import lombok.*;
|
||||
|
||||
/**
|
||||
* packageName : go.kr.project.crdn.crndRegistAndView.main.model
|
||||
* fileName : CrdnRegistAndViewExcelVO
|
||||
* author : 시스템 관리자
|
||||
* date : 2025-08-25
|
||||
* description : 단속 목록 엑셀 다운로드용 VO 클래스
|
||||
* 중요한 로직 주석: 엑셀 다운로드 시 사용되는 전용 VO로 @ExcelColumn 어노테이션을 포함
|
||||
* ===========================================================
|
||||
* DATE AUTHOR NOTE
|
||||
* -----------------------------------------------------------
|
||||
* 2025-08-25 시스템 관리자 최초 생성
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@ToString
|
||||
public class CrdnRegistAndViewExcelVO {
|
||||
|
||||
@ExcelColumn(headerName = "단속년도")
|
||||
private String crdnYr;
|
||||
|
||||
@ExcelColumn(headerName = "단속번호")
|
||||
private String crdnNo;
|
||||
|
||||
@ExcelColumn(headerName = "법정동")
|
||||
private String stdgEmdCdNm;
|
||||
|
||||
@ExcelColumn(headerName = "지역구분")
|
||||
private String rgnSeCdNm;
|
||||
|
||||
@ExcelColumn(headerName = "적발방법")
|
||||
private String dsclMthdCdNm;
|
||||
|
||||
@ExcelColumn(headerName = "적발일자")
|
||||
private String dsclYmd;
|
||||
|
||||
@ExcelColumn(headerName = "조사원")
|
||||
private String exmnr;
|
||||
|
||||
@ExcelColumn(headerName = "재부과여부")
|
||||
private String relevyYn;
|
||||
|
||||
@ExcelColumn(headerName = "가중부과대상")
|
||||
private String agrvtnLevyTrgtYn;
|
||||
|
||||
@ExcelColumn(headerName = "진행단계")
|
||||
private String crdnPrcsSttsCdNm;
|
||||
|
||||
@ExcelColumn(headerName = "조치처리상태")
|
||||
private String actCmpltCd;
|
||||
|
||||
@ExcelColumn(headerName = "위치")
|
||||
private String lotnoWholAddr;
|
||||
|
||||
@ExcelColumn(headerName = "행위유형")
|
||||
private String actTypeCdNm;
|
||||
|
||||
@ExcelColumn(headerName = "용도")
|
||||
private String usgIdxCdNm;
|
||||
|
||||
@ExcelColumn(headerName = "소유자")
|
||||
private String ownrNams;
|
||||
|
||||
@ExcelColumn(headerName = "행위자")
|
||||
private String actrNams;
|
||||
|
||||
@ExcelColumn(headerName = "처분사전 일자")
|
||||
private String dspsBfhdBgngYmd;
|
||||
|
||||
@ExcelColumn(headerName = "시정명령 일자")
|
||||
private String crcCmdBgngYmd;
|
||||
|
||||
@ExcelColumn(headerName = "시정촉구 일자")
|
||||
private String crcUrgBgngYmd;
|
||||
|
||||
@ExcelColumn(headerName = "부과예고 일자")
|
||||
private String levyPrvntcBgngYmd;
|
||||
|
||||
@ExcelColumn(headerName = "부과 일자")
|
||||
private String levyBgngYmd;
|
||||
|
||||
@ExcelColumn(headerName = "납부촉구 일자")
|
||||
private String payUrgBgngYmd;
|
||||
|
||||
@ExcelColumn(headerName = "등록일시")
|
||||
private String regDt;
|
||||
|
||||
@ExcelColumn(headerName = "등록자")
|
||||
private String rgtrNm;
|
||||
}
|
||||
Loading…
Reference in New Issue