| | |
| | | status integer default 0, |
| | | count integer default 0, |
| | | descr varchar(100), |
| | | guid varchar(40), |
| | | create_user integer default 1, |
| | | create_time timestamp(6) without time zone default now(), |
| | | update_user integer, |
| | |
| | | comment on column lf.sys_apply.status is '状态:-10-作废,-1-打回,0~9-审核中,10-通过'; |
| | | comment on column lf.sys_apply.count is '审核总数'; |
| | | comment on column lf.sys_apply.descr is '描述'; |
| | | comment on column lf.sys_apply.guid is 'GUID'; |
| | | comment on column lf.sys_apply.create_user is '创建人id'; |
| | | comment on column lf.sys_apply.create_time is '创建时间'; |
| | | comment on column lf.sys_apply.update_user is '更新人id'; |
| | | comment on column lf.sys_apply.update_time is '更新时间'; |
| | | |
| | | select * from lf.sys_apply; |
| | | select * from lf.sys_apply order by id desc; |
| | | ----------------------------------------------------------------------------------------------------- 29.申请流程表 |
| | | -- drop table if exists lf.sys_flow; |
| | | create table lf.sys_flow ( |