/*
================================================================================
档案代号:tpl_file
档案名称:劳保异动记录档
档案目的:
上游档案:
下游档案:
============.========================.==========================================
*/
create table tpl_file
(
tpl01       varchar2(16) NOT NULL,   /*异动单号                               */
tpl02       number(5) NOT NULL,      /*行序                                   */
tpl03       varchar2(1),             /*异动别                                 */
                                     /*1:加保   2:退保     3:等级变更         */
tpl04       varchar2(10),            /*员工代号                               */
tpl05       varchar2(2),             /*原劳保投保等级                         */
tpl052      number(9,4),             /*原劳保费率                             */
tpl06       varchar2(2),             /*新劳保投保等级                         */
tpl062      number(9,4),             /*新劳保费率                             */
tpl07       varchar2(1),             /*原劳保减免注记                         */
tpl08       varchar2(1),             /*新劳保减免注记                         */
tpl081      number(5),               /*No Use                                 */
tpl09       date,                    /*原加保日                               */
tpl10       date,                    /*原退保日                               */
tplud01     varchar2(255),           /*自订栏位-Textedit                      */
tplud02     varchar2(40),            /*自订栏位-文字                          */
tplud03     varchar2(40),            /*自订栏位-文字                          */
tplud04     varchar2(40),            /*自订栏位-文字                          */
tplud05     varchar2(40),            /*自订栏位-文字                          */
tplud06     varchar2(40),            /*自订栏位-文字                          */
tplud07     number(15,3),            /*自订栏位-数值                          */
tplud08     number(15,3),            /*自订栏位-数值                          */
tplud09     number(15,3),            /*自订栏位-数值                          */
tplud10     number(10),              /*自订栏位-整数                          */
tplud11     number(10),              /*自订栏位-整数                          */
tplud12     number(10),              /*自订栏位-整数                          */
tplud13     date,                    /*自订栏位-日期                          */
tplud14     date,                    /*自订栏位-日期                          */
tplud15     date                     /*自订栏位-日期                          */
);

create unique index tpl_pk on tpl_file (tpl01,tpl02);
alter table tpl_file add  constraint tpl_pk primary key  (tpl01,tpl02) enable validate;
grant select on tpl_file to public;
grant index on tpl_file to public;
grant update on tpl_file to public;
grant delete on tpl_file to public;
grant insert on tpl_file to public;