wangting
2025-01-14 fbbd60a85c9e9b2e6f34332fe7b72c262abfe380
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
create table PLCACHETEMP
(
  pluid         VARCHAR2(64) not null,
  plobjoid      VARCHAR2(64) not null,
  plobjtype     VARCHAR2(64),
  ploperation   VARCHAR2(128),
  ploperatetime TIMESTAMP(6)
);
 
alter table PLCACHETEMP
  add constraint PK_CACHETEMP primary key (PLUID);
  
  comment on column PLCACHETEMP.pluid is 'ID';
  comment on column PLCACHETEMP.plobjoid is '对象数据oid';
  comment on column PLCACHETEMP.plobjtype is '对象类型,包含enum/attr/statuspool/lifecycle/revisionrule/btm/linktype等';
  comment on column PLCACHETEMP.ploperation is '操作,包含create/edit/delete三种';
  comment on column PLCACHETEMP.ploperatetime  is '操作时间';