/* ================================================================================ 档案代号:bhd_file 档案名称:部门分摊异动档 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table bhd_file ( bhd01 varchar2(10) NOT NULL, /*版本 */ bhd02 number(5) NOT NULL, /*年度 */ bhd03 number(5) NOT NULL, /*期别 */ bhd04 varchar2(10) NOT NULL, /*部门 */ bhd05 varchar2(6) NOT NULL, /*分摊类别 */ /*分摊类别,折旧固定为预计折旧insert */ /*用人费用时会用到 */ /*销货收入 '@@@@@1' */ /*销货成本 '@@@@@2' */ /*制造成本 '@@@@@3' */ /*采购成本 '@@@@@4' */ /*用人费用 '@@@@@5' */ /*折旧 '折旧' */ bhd06 number(5) NOT NULL, /*项次 */ bhd07 varchar2(24), /*会计科目 */ bhd08 varchar2(10), /*被分摊部门 */ bhd09 number(20,6) /*分摊金额 */ ); create unique index bhd_pk on bhd_file (bhd01,bhd02,bhd03,bhd04,bhd05,bhd06); alter table bhd_file add constraint bhd_pk primary key (bhd01,bhd02,bhd03,bhd04,bhd05,bhd06) enable validate; grant select on bhd_file to public; grant index on bhd_file to public; grant update on bhd_file to public; grant delete on bhd_file to public; grant insert on bhd_file to public; |