Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
傅伟强-富德
/
test1
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 164d435a
authored
Jul 31, 2018
by
傅伟强-富德
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add new file
1 parent
32da6316
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
100 additions
and
0 deletions
任务计划表结构
任务计划表结构
0 → 100644
View file @
164d435
create table appdata.SLIS_BATCH_PLAN
create table appdata.SLIS_BATCH_PLAN
(
sequence VARCHAR2(20) not null,
proc_code VARCHAR2(4),
branch_code VARCHAR2(10),
parameters VARCHAR2(2000),
scheduled_start_date DATE,
priority INTEGER,
proc_flag VARCHAR2(2),
create_date DATE,
create_user VARCHAR2(100),
fcu VARCHAR2(100),
fcd DATE,
lcu VARCHAR2(100),
lcd DATE,
job_no NUMBER,
job_source_module VARCHAR2(4),
start_date DATE,
end_date DATE
)
comment on table appdata.SLIS_BATCH_PLAN
is '任务计划表';
-- Add comments to the columns
comment on column appdata.SLIS_BATCH_PLAN.sequence
is '流水号';
comment on column appdata.SLIS_BATCH_PLAN.proc_code
is '批处理代码';
comment on column appdata.SLIS_BATCH_PLAN.branch_code
is '机构代码';
comment on column appdata.SLIS_BATCH_PLAN.parameters
is '批处理参数';
comment on column appdata.SLIS_BATCH_PLAN.scheduled_start_date
is '任务计划启动时间';
comment on column appdata.SLIS_BATCH_PLAN.priority
is '优先级';
comment on column appdata.SLIS_BATCH_PLAN.proc_flag
is '批处理状态';
comment on column appdata.SLIS_BATCH_PLAN.create_date
is '写入时间';
comment on column appdata.SLIS_BATCH_PLAN.create_user
is '写入用户';
comment on column appdata.SLIS_BATCH_PLAN.fcu
is '创建人';
comment on column appdata.SLIS_BATCH_PLAN.fcd
is '创建日期';
comment on column appdata.SLIS_BATCH_PLAN.lcu
is '修改人';
comment on column appdata.SLIS_BATCH_PLAN.lcd
is '修改日期';
comment on column appdata.SLIS_BATCH_PLAN.job_no
is 'job号';
comment on column appdata.SLIS_BATCH_PLAN.job_source_module
is 'job模块号';
comment on column appdata.SLIS_BATCH_PLAN.start_date
is '任务起始时间';
comment on column appdata.SLIS_BATCH_PLAN.end_date
is '任务结束时间(不精确,间隔时间越大差异越大)';
create table rendata.RN_ASSIGN_BATCH_RECORD
branch_code VARCHAR2(10) not null,
due_month DATE not null,
batch_code VARCHAR2(20) not null,
batch_seq VARCHAR2(20),
finish_flag VARCHAR2(1),
pk_serial VARCHAR2(20) not null,
created_user VARCHAR2(100) not null,
created_date DATE default sysdate not null,
updated_user VARCHAR2(100) not null,
updated_date DATE default sysdate not null
comment on table rendata.RN_ASSIGN_BATCH_RECORD
is '机构分单批次申请记录表';
-- Add comments to the columns
comment on column rendata.RN_ASSIGN_BATCH_RECORD.due_month
is '应缴月';
comment on column rendata.RN_ASSIGN_BATCH_RECORD.batch_code
is '批处理代码';
comment on column rendata.RN_ASSIGN_BATCH_RECORD.batch_seq
is '批处理流水';
comment on column rendata.RN_ASSIGN_BATCH_RECORD.finish_flag
is '完成状态';
comment on column rendata.RN_ASSIGN_BATCH_RECORD.pk_serial
is '数据主键';
comment on column rendata.RN_ASSIGN_BATCH_RECORD.created_user
is '录入人';
comment on column rendata.RN_ASSIGN_BATCH_RECORD.created_date
is '录入日期';
comment on column rendata.RN_ASSIGN_BATCH_RECORD.updated_user
is '修改人';
comment on column rendata.RN_ASSIGN_BATCH_RECORD.updated_date
is '修改日期';
\ No newline at end of file
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment