/* ================================================================================ 档案代号:tpm_file 档案名称:健保异动资料档 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table tpm_file ( tpm01 varchar2(16) NOT NULL, /*异动单号 */ tpm02 number(5) NOT NULL, /*行序 */ tpm03 varchar2(1), /*异动类别 */ /*1:转入 2:转出 3: 保额变更 */ /*4:减免注记 5:复职转入 */ tpm04 varchar2(16), /*员工代号 */ tpm05 varchar2(2), /*健保原投保薪资等级 */ tpm06 varchar2(2), /*健保新投保薪资等级 */ tpm051 varchar2(1), /*健保原减免注记 */ tpm061 varchar2(1), /*健保新减免注记 */ tpm07 date, /*原加保日 */ /*原加保日 02/12/19 modify */ tpm08 date, /*原退保日 */ /*原退保日 02/12/19 modify */ tpm09 varchar2(1), /*异动注记 */ tpm10 varchar2(1), /*No Use */ tpmud01 varchar2(255), /*自订栏位-Textedit */ tpmud02 varchar2(40), /*自订栏位-文字 */ tpmud03 varchar2(40), /*自订栏位-文字 */ tpmud04 varchar2(40), /*自订栏位-文字 */ tpmud05 varchar2(40), /*自订栏位-文字 */ tpmud06 varchar2(40), /*自订栏位-文字 */ tpmud07 number(15,3), /*自订栏位-数值 */ tpmud08 number(15,3), /*自订栏位-数值 */ tpmud09 number(15,3), /*自订栏位-数值 */ tpmud10 number(10), /*自订栏位-整数 */ tpmud11 number(10), /*自订栏位-整数 */ tpmud12 number(10), /*自订栏位-整数 */ tpmud13 date, /*自订栏位-日期 */ tpmud14 date, /*自订栏位-日期 */ tpmud15 date /*自订栏位-日期 */ ); create unique index tpm_pk on tpm_file (tpm01,tpm02); alter table tpm_file add constraint tpm_pk primary key (tpm01,tpm02) enable validate; grant select on tpm_file to public; grant index on tpm_file to public; grant update on tpm_file to public; grant delete on tpm_file to public; grant insert on tpm_file to public; |