/* ================================================================================ 档案代号:axll_file 档案名称:股东权益群组对应会计科目表 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table axll_file ( axll01 varchar2(10) NOT NULL, /*群组代码 */ axll02 varchar2(24), /*会计科目 */ axll03 varchar2(1), /*no use */ axll04 varchar2(255) /*no use */ ); create unique index axll_pk on axll_file (axll01,axll02); grant select on axll_file to public; grant index on axll_file to public; grant update on axll_file to public; grant delete on axll_file to public; grant insert on axll_file to public; |