DDL 변경 적용
parent
de1476c308
commit
3ec9d72b4d
@ -0,0 +1,20 @@
|
||||
create table tb_implt_info
|
||||
(
|
||||
IMPLT_INFO_ID varchar(10) not null comment '이행 정보 ID'
|
||||
primary key,
|
||||
SGG_CD varchar(5) not null comment '시군구 코드',
|
||||
CRDN_YR char(4) null comment '단속 연도',
|
||||
CRDN_NO varchar(6) null comment '단속 번호',
|
||||
IMPLT_TASK_SE_CD varchar(2) null comment '이행 업무 구분 코드',
|
||||
IMPLT_BGNG_YMD varchar(8) null comment '이행 시작 일자',
|
||||
IMPLT_END_YMD varchar(8) null comment '이행 종료 일자',
|
||||
REG_DT datetime null comment '등록 일시',
|
||||
RGTR varchar(11) null comment '등록자',
|
||||
MDFCN_DT datetime null comment '수정 일시',
|
||||
MDFR varchar(11) null comment '수정자',
|
||||
DEL_YN char not null comment '삭제 여부',
|
||||
DEL_DT datetime null comment '삭제 일시',
|
||||
DLTR varchar(11) null comment '삭제자'
|
||||
)
|
||||
comment '이행 정보';
|
||||
|
||||
@ -0,0 +1,22 @@
|
||||
create table tb_implt_trpr_info
|
||||
(
|
||||
IMPLT_TRPR_INFO_ID varchar(10) not null comment '이행 대상자 정보 ID'
|
||||
primary key,
|
||||
SGG_CD varchar(5) not null comment '시군구 코드',
|
||||
IMPLT_INFO_ID varchar(10) not null comment '이행 정보 ID',
|
||||
IMPLT_TRPR_FLNM varchar(100) null comment '이행 대상자 성명',
|
||||
IMPLT_TRPR_ADDR varchar(320) null comment '이행 대상자 주소',
|
||||
IMPLT_TRPR_DADDR varchar(320) null comment '이행 대상자 상세주소',
|
||||
IMPLT_TRPR_ZIP varchar(6) null comment '이행 대상자 우편번호',
|
||||
IMPLT_TRPR_SE_CD varchar(1) null comment '이행 대상자 구분 코드',
|
||||
OWNR_ACTR_INFO_ID varchar(1) null comment '소유자 행위자 정보 ID',
|
||||
REG_DT datetime null comment '등록 일시',
|
||||
RGTR varchar(11) null comment '등록자',
|
||||
MDFCN_DT datetime null comment '수정 일시',
|
||||
MDFR varchar(11) null comment '수정자',
|
||||
DEL_YN char not null comment '삭제 여부',
|
||||
DEL_DT datetime null comment '삭제 일시',
|
||||
DLTR varchar(11) null comment '삭제자'
|
||||
)
|
||||
comment '이행 대상자 정보';
|
||||
|
||||
Loading…
Reference in New Issue