/*
================================================================================
档案代号:rpj_file
档案名称:粗略产能规划时距档
档案目的:
上游档案:
下游档案:
============.========================.==========================================
*/
create table rpj_file
(
rpj01       varchar2(10) NOT NULL,   /*模拟版本                               */
rpj02       varchar2(10) NOT NULL,   /*工作站编号                             */
rpj03       number(5) NOT NULL,      /*时距代号                               */
rpj04       varchar2(40) NOT NULL,   /*料件编号                               */
rpj06       date,                    /*起始日期                               */
rpj07       date,                    /*结束日期                               */
rpj08       number(15,3),            /*总设置小时                             */
rpj09       number(15,3),            /*总生产小时                             */
rpj10       number(15,3),            /*工作站产能                             */
                                     /*工作站产能(小时)                       */
rpj11       varchar2(4),             /*工作站工作历编号                       */
rpj12       number(5)                /*工作站资源数                           */
                                     /*工作站资源数(使用工作历计算产能用)     */
);

create unique index rpj_pk on rpj_file (rpj01,rpj02,rpj03,rpj04);
alter table rpj_file add  constraint rpj_pk primary key  (rpj01,rpj02,rpj03,rpj04) enable validate;
grant select on rpj_file to public;
grant index on rpj_file to public;
grant update on rpj_file to public;
grant delete on rpj_file to public;
grant insert on rpj_file to public;