You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.5 KiB
Java
36 lines
1.5 KiB
Java
package go.kr.project.vo;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Getter;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
@Getter
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
@Builder
|
|
public class TbCntcSndngDetailVO {
|
|
|
|
private String unitySndngDetailId; // 통합 발송 상세 ID (PK)
|
|
private String unitySndngMastrId; // 통합 발송 마스터 ID
|
|
private String signguCode; // 시군구 코드
|
|
private String ffnlgCode; // 과태료 코드
|
|
private String mainCode; // 메인 코드
|
|
private String vhcleNo; // 차량 번호
|
|
private String ihidnum; // 주민등록번호
|
|
private String moblphonNo; // 핸드폰 번호
|
|
private String nm; // 성명
|
|
private String adres; // 주소
|
|
private String detailAdres; // 상세 주소
|
|
private String zip; // 우편번호
|
|
private String tmpltMsgData; // 템플릿 메시지 데이터 (LONGTEXT)
|
|
private String mobilePageCn; // 모바일 페이지 내용 (LONGTEXT)
|
|
private String useInsttIdntfcId; // 이용 기관 식별 ID
|
|
private String externalDocumentUuid; // 외부 문서 식별 번호
|
|
private LocalDateTime registDt; // 등록일자
|
|
private String register; // 등록자
|
|
private LocalDateTime updtDt; // 수정일자
|
|
private String updusr; // 수정자
|
|
} |