/*
================================================================================
档案代号:get_file
档案名称:公式分类码基本资料档
档案目的:
上游档案:
下游档案:
============.========================.==========================================
*/
create table get_file
(
get01       varchar2(10) NOT NULL,   /*公式分类码                             */
get02       varchar2(80)             /*分类码说明                             */
);

create unique index get_pk on get_file (get01);
alter table get_file add  constraint get_pk primary key  (get01) enable validate;
grant select on get_file to public;
grant index on get_file to public;
grant update on get_file to public;
grant delete on get_file to public;
grant insert on get_file to public;