/*
================================================================================
档案代号:tpt_file
档案名称:劳保保费记录档
档案目的:
上游档案:
下游档案:
============.========================.==========================================
*/
create table tpt_file
(
tpt01       varchar2(5) NOT NULL,    /*计薪周期代号                           */
tpt02       number(5),               /*薪资识别年度                           */
tpt021      number(5),               /*薪资识别月份                           */
tpt03       varchar2(1),             /*薪资记录之识别上下月状况资             */
tpt04       varchar2(10) NOT NULL,   /*员工代号                               */
tpt04a      varchar2(10),            /*公司别                                 */
tpt04b      varchar2(10),            /*部门代号                               */
tpt05       number(9,4),             /*劳保费率                               */
tpt06       number(20,6),            /*劳保费                                 */
                                     /*劳保费(本人)                           */
tpt061      number(20,6),            /*劳保费                                 */
                                     /*劳保费(资方)                           */
tpt062      number(6),               /*No Use                                 */
tpt07       number(20,6),            /*劳保投保薪资                           */
                                     /*劳保投保薪资(01/02/02 add)             */
tpt08       number(5),               /*劳保等级                               */
                                     /*劳保等级(01/05/15 add)                 */
tpt09       varchar2(255),           /*备注                                   */
                                     /*备注(01/05/15 add)                     */
tpt10       varchar2(1)              /*劳保减免注记                           */
                                     /*劳保减免注记(01/05/31 add)             */
);

create unique index tpt_pk on tpt_file (tpt01,tpt04);
alter table tpt_file add  constraint tpt_pk primary key  (tpt01,tpt04) enable validate;
grant select on tpt_file to public;
grant index on tpt_file to public;
grant update on tpt_file to public;
grant delete on tpt_file to public;
grant insert on tpt_file to public;