Compare commits
4 Commits
7b4ab93f4b
...
df53975ed7
| Author | SHA1 | Date |
|---|---|---|
|
|
df53975ed7 | |
|
|
913ab9a0c3 | |
|
|
c2ee92cc42 | |
|
|
3fe458f392 |
|
|
@ -1,5 +1,5 @@
|
|||
log=false
|
||||
defaultCloseNonStandard149=true
|
||||
AESEncryptScrect=990EB004A1C862721C1513AE90038C9E
|
||||
version=3.0.3.2510.01
|
||||
version=3.0.4.2603.01
|
||||
openFormulaForcedEditing=false
|
||||
|
|
@ -1,54 +1,35 @@
|
|||
alter table hrsa_bill_detail_temp add subcompany_name varchar2(200) NULL;
|
||||
/
|
||||
alter table hrsa_bill_detail_temp add subcompany_name varchar(200) NULL;
|
||||
|
||||
alter table hrsa_bill_detail_temp add subcompany_id NUMBER null;
|
||||
/
|
||||
alter table hrsa_bill_detail_temp add subcompany_id bigint null;
|
||||
|
||||
alter table hrsa_bill_detail_temp add department_name varchar2(200) NULL;
|
||||
/
|
||||
alter table hrsa_bill_detail_temp add department_name varchar(200) NULL;
|
||||
|
||||
alter table hrsa_bill_detail_temp add department_id NUMBER null;
|
||||
/
|
||||
alter table hrsa_bill_detail_temp add department_id bigint null;
|
||||
|
||||
alter table hrsa_bill_detail_temp add jobtitle_name varchar2(200) NULL;
|
||||
/
|
||||
alter table hrsa_bill_detail_temp add jobtitle_name varchar(200) NULL;
|
||||
|
||||
alter table hrsa_bill_detail_temp add jobtitle_id NUMBER NULL;
|
||||
/
|
||||
alter table hrsa_bill_detail_temp add jobtitle_id bigint NULL;
|
||||
|
||||
alter table hrsa_bill_detail_temp add jobcall varchar2(200) NULL;
|
||||
/
|
||||
alter table hrsa_bill_detail_temp add jobcall varchar(200) NULL;
|
||||
|
||||
alter table hrsa_bill_detail_temp add jobcall_id NUMBER NULL;
|
||||
/
|
||||
alter table hrsa_bill_detail_temp add jobcall_id bigint NULL;
|
||||
|
||||
alter table hrsa_bill_detail_temp add status varchar2(200) NULL;
|
||||
/
|
||||
alter table hrsa_bill_detail_temp add status varchar(200) NULL;
|
||||
|
||||
alter table hrsa_bill_detail add subcompany_name varchar(200) NULL;
|
||||
|
||||
alter table hrsa_bill_detail add subcompany_name varchar2(200) NULL;
|
||||
/
|
||||
alter table hrsa_bill_detail add subcompany_id bigint null;
|
||||
|
||||
alter table hrsa_bill_detail add subcompany_id NUMBER null;
|
||||
/
|
||||
alter table hrsa_bill_detail add department_name varchar(200) NULL;
|
||||
|
||||
alter table hrsa_bill_detail add department_name varchar2(200) NULL;
|
||||
/
|
||||
alter table hrsa_bill_detail add department_id bigint null;
|
||||
|
||||
alter table hrsa_bill_detail add department_id NUMBER null;
|
||||
/
|
||||
alter table hrsa_bill_detail add jobtitle_name varchar(200) NULL;
|
||||
|
||||
alter table hrsa_bill_detail add jobtitle_name varchar2(200) NULL;
|
||||
/
|
||||
alter table hrsa_bill_detail add jobtitle_id bigint NULL;
|
||||
|
||||
alter table hrsa_bill_detail add jobtitle_id NUMBER NULL;
|
||||
/
|
||||
alter table hrsa_bill_detail add jobcall varchar(200) NULL;
|
||||
|
||||
alter table hrsa_bill_detail add jobcall varchar2(200) NULL;
|
||||
/
|
||||
alter table hrsa_bill_detail add jobcall_id bigint NULL;
|
||||
|
||||
alter table hrsa_bill_detail add jobcall_id NUMBER NULL;
|
||||
/
|
||||
|
||||
alter table hrsa_bill_detail add status varchar2(200) NULL;
|
||||
/
|
||||
alter table hrsa_bill_detail add status varchar(200) NULL;
|
||||
|
|
@ -290,7 +290,7 @@
|
|||
</trim>
|
||||
<trim prefix="update_time = case" suffix="end,">
|
||||
<foreach collection="collection" item="item" index="index">
|
||||
WHEN id = #{item.id} THEN #{item.updateTime}
|
||||
WHEN id = #{item.id} THEN #{item.updateTime,jdbcType=TIMESTAMP}
|
||||
</foreach>
|
||||
</trim>
|
||||
</trim>
|
||||
|
|
|
|||
|
|
@ -370,7 +370,7 @@
|
|||
</trim>
|
||||
<trim prefix="update_time = case" suffix="end,">
|
||||
<foreach collection="collection" item="item" index="index">
|
||||
WHEN id = #{item.id} THEN #{item.updateTime}
|
||||
WHEN id = #{item.id} THEN #{item.updateTime,jdbcType=TIMESTAMP}
|
||||
</foreach>
|
||||
</trim>
|
||||
</trim>
|
||||
|
|
|
|||
|
|
@ -379,7 +379,7 @@
|
|||
</trim>
|
||||
<trim prefix="update_time = case" suffix="end,">
|
||||
<foreach collection="collection" item="item" index="index">
|
||||
WHEN id = #{item.id} THEN #{item.updateTime}
|
||||
WHEN id = #{item.id} THEN #{item.updateTime,jdbcType=TIMESTAMP}
|
||||
</foreach>
|
||||
</trim>
|
||||
<trim prefix="delete_type = case" suffix="end,">
|
||||
|
|
|
|||
Loading…
Reference in New Issue