/*
================================================================================
档案代号:stv_file
档案名称:每月工单分摊基本资料档
档案目的:
上游档案:
下游档案:
============.========================.==========================================
*/
create table stv_file
(
stv01       number(5) NOT NULL,      /*年度                                   */
stv02       number(5) NOT NULL,      /*月份                                   */
stv03       varchar2(16) NOT NULL,   /*工单号码                               */
stv04       varchar2(40),            /*料号                                   */
stv05       number(15,3),            /*总投入人工小时                         */
stv06       number(15,3),            /*总投入机器小时                         */
stv07       number(15,3),            /*入库数量                               */
stv08       varchar2(1),             /*成品否                                 */
stv09       varchar2(10),            /*产品别                                 */
stv10       varchar2(10)             /*部门别                                 */
);

create unique index stv_pk on stv_file (stv01,stv02,stv03);
alter table stv_file add  constraint stv_pk primary key  (stv01,stv02,stv03) enable validate;
grant select on stv_file to public;
grant index on stv_file to public;
grant update on stv_file to public;
grant delete on stv_file to public;
grant insert on stv_file to public;