/*
================================================================================
档案代号:ccj_file
档案名称:每日投入工时单身档
档案目的:
上游档案:
下游档案:
============.========================.==========================================
*/
create table ccj_file
(
ccj01       date NOT NULL,           /*日期                                   */
ccj02       varchar2(10) NOT NULL,   /*部门                                   */
ccj03       number(5) NOT NULL,      /*序号                                   */
ccj04       varchar2(16) NOT NULL,   /*工单编号                               */
ccj05       number(15,3) NOT NULL,   /*投入工时                               */
ccj06       number(15,3),            /*生产数量                               */
ccj07       number(15,3),            /*投入标准人工工时                       */
ccj08       varchar2(255),           /*备注                                   */
ccj071      number(15,3) DEFAULT '0',/*投入标准机器工时                       */
ccjud01     varchar2(255),           /*自订栏位-Textedit                      */
ccjud02     varchar2(40),            /*自订栏位-文字                          */
ccjud03     varchar2(40),            /*自订栏位-文字                          */
ccjud04     varchar2(40),            /*自订栏位-文字                          */
ccjud05     varchar2(40),            /*自订栏位-文字                          */
ccjud06     varchar2(40),            /*自订栏位-文字                          */
ccjud07     number(15,3),            /*自订栏位-数值                          */
ccjud08     number(15,3),            /*自订栏位-数值                          */
ccjud09     number(15,3),            /*自订栏位-数值                          */
ccjud10     number(10),              /*自订栏位-整数                          */
ccjud11     number(10),              /*自订栏位-整数                          */
ccjud12     number(10),              /*自订栏位-整数                          */
ccjud13     date,                    /*自订栏位-日期                          */
ccjud14     date,                    /*自订栏位-日期                          */
ccjud15     date,                    /*自订栏位-日期                          */
ccj051      number(15,3)             /*投入机时                               */
);

create        index ccj_02 on ccj_file (ccj04);
create unique index ccj_pk on ccj_file (ccj01,ccj02,ccj03);
alter table ccj_file add  constraint ccj_pk primary key  (ccj01,ccj02,ccj03) enable validate;
grant select on ccj_file to public;
grant index on ccj_file to public;
grant update on ccj_file to public;
grant delete on ccj_file to public;
grant insert on ccj_file to public;