/*
================================================================================
档案代号:tpu_file
档案名称:公司-厂别劳健保字号资料档
档案目的:
上游档案:
下游档案:
============.========================.==========================================
*/
create table tpu_file
(
tpu01       varchar2(10) NOT NULL,   /*公司代号                               */
tpu02       varchar2(4) NOT NULL,    /*厂别                                   */
tpu03       varchar2(20),            /*劳保字号                               */
tpu04       varchar2(20),            /*健保字号                               */
tpu05       varchar2(40),            /*营运中心简称                           */
                                     /*营运中心简称     #add 030314 NO.A066   */
tpu06       varchar2(80),            /*营运中心全称                           */
                                     /*营运中心全称     #add 030314 NO.A066   */
tpu07       varchar2(6),             /*营运中心邮编                           */
                                     /*营运中心邮编     #add 030314 NO.A066   */
tpu08       varchar2(40),            /*营运中心电话                           */
                                     /*营运中心电话     #add 030314 NO.A066   */
tpu09       varchar2(40),            /*营运中心传真                           */
                                     /*营运中心传真     #add 030314 NO.A066   */
tpu10       varchar2(80),            /*营运中心网页                           */
                                     /*营运中心网页     #add 030314 NO.A066   */
tpu11       number(15,6)             /*职业灾害保险费率                       */
);

create unique index tpu_pk on tpu_file (tpu01,tpu02);
alter table tpu_file add  constraint tpu_pk primary key  (tpu01,tpu02) enable validate;
grant select on tpu_file to public;
grant index on tpu_file to public;
grant update on tpu_file to public;
grant delete on tpu_file to public;
grant insert on tpu_file to public;