/* ================================================================================ 档案代号:cco_file 档案名称:标准成本版本名称档 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table cco_file ( cco01 varchar2(10) NOT NULL, /*版本 */ cco02 varchar2(80), /*版本名称 */ cco03 number(20,6), /*每小时直接人工成本分摊金额 */ cco04 number(20,6), /*每小时间接制造费用分摊金额 */ cco05 varchar2(1), /*冻结否 */ /*冻结否 (Y/N) */ /* Y:版本冻结, 不可再做任何修改调整 */ cco06 date, /*最近冻结日期 */ cco07 varchar2(10), /*最近冻结人员 */ cco08 number(10), /*版本冻结时料件笔数 */ cco09 number(10), /*版本冻结时BOM 笔数 */ cco10 number(20,6) /*版本冻结时料件成本合计 */ ); create unique index cco_pk on cco_file (cco01); alter table cco_file add constraint cco_pk primary key (cco01) enable validate; grant select on cco_file to public; grant index on cco_file to public; grant update on cco_file to public; grant delete on cco_file to public; grant insert on cco_file to public; |