/* ================================================================================ 档案代号:fcb_file 档案名称:固定资产投资抵减单头档 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table fcb_file ( fcb01 varchar2(16) NOT NULL, /*申请单号 */ fcb02 date, /*申请日期 */ fcb03 date, /*管理局核准日期 */ fcb04 varchar2(30), /*管理局核准文号 */ fcb05 date, /*国税局核准日期 */ fcb06 varchar2(30), /*国税局核准文号 */ fcbconf varchar2(1), /*确认否 */ /*确认否 (Y/N/X) */ fcbprsw number(5), /*列印次数 */ fcbuser varchar2(10), /*资料所有者 */ fcbgrup varchar2(10), /*资料所有部门 */ fcbmodu varchar2(10), /*资料修改者 */ fcbdate date, /*最近修改日 */ fcbud01 varchar2(255), /*自订栏位-Textedit */ fcbud02 varchar2(40), /*自订栏位-文字 */ fcbud03 varchar2(40), /*自订栏位-文字 */ fcbud04 varchar2(40), /*自订栏位-文字 */ fcbud05 varchar2(40), /*自订栏位-文字 */ fcbud06 varchar2(40), /*自订栏位-文字 */ fcbud07 number(15,3), /*自订栏位-数值 */ fcbud08 number(15,3), /*自订栏位-数值 */ fcbud09 number(15,3), /*自订栏位-数值 */ fcbud10 number(10), /*自订栏位-整数 */ fcbud11 number(10), /*自订栏位-整数 */ fcbud12 number(10), /*自订栏位-整数 */ fcbud13 date, /*自订栏位-日期 */ fcbud14 date, /*自订栏位-日期 */ fcbud15 date /*自订栏位-日期 */ ); create unique index fcb_pk on fcb_file (fcb01); alter table fcb_file add constraint fcb_pk primary key (fcb01) enable validate; grant select on fcb_file to public; grant index on fcb_file to public; grant update on fcb_file to public; grant delete on fcb_file to public; grant insert on fcb_file to public; |