Commit 61e13dad authored by 鲁鑫's avatar 鲁鑫

数据库切换

parent fe577eec
pub.db.url=jdbc:mysql://192.168.3.91:3406/topsun?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8&useSSL=false
pub.db.url=jdbc:mysql://192.168.3.91:3406/topsun_dev?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8&useSSL=false
pub.db.user=root
pub.db.password=123456
log.db.url=jdbc:mysql://192.168.3.91:3406/topsun?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8&useSSL=false
log.db.user=root
log.db.password=123456
#pub.db.url=jdbc:mysql://192.168.222.122:3406/topsun?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8&useSSL=false
#pub.db.user=root
#pub.db.password=123456
#
#log.db.url=jdbc:mysql://192.168.222.122:3406/topsun?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8&useSSL=false
#log.db.user=root
#log.db.password=123456
hana.db.url=jdbc:mysql://192.168.222.122:3406/topsun?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8&useSSL=false
hana.db.user=root
hana.db.password=123456
#hana.db.url=jdbc:mysql://127.0.0.1:3306/topsun?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8&useSSL=false
#hana.db.user=topsun
#hana.db.password=topsun
#pub.db.url=jdbc:mysql://127.0.0.1:3306/topsun?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8&useSSL=false
#pub.db.user=topsun
#pub.db.password=topsun
#
#log.db.url=jdbc:mysql://127.0.0.1:3306/topsun?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8&useSSL=false
#log.db.user=topsun
#log.db.password=topsun
log.db.url=jdbc:mysql://192.168.3.91:3406/topsun_dev?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8&useSSL=false
log.db.user=root
log.db.password=123456
shiro.host=127.0.0.1
shiro.port=6379
......
......@@ -9,4 +9,24 @@ ALTER TABLE `topsun`.`ep_change_form`
ADD COLUMN `others_material_store` varchar(255) NULL COMMENT '涉及原材料成品库存' AFTER `old_material`;
ALTER TABLE `topsun`.`ep_change_form`
ADD COLUMN `other_process` varchar(255) NULL COMMENT '涉及成品编码' AFTER `others_material_store`;
\ No newline at end of file
ADD COLUMN `other_process` varchar(255) NULL COMMENT '涉及成品编码' AFTER `others_material_store`;
-- 2024-08-27 鲁鑫 未更新
ALTER TABLE `topsun`.`mes_unqualified_materials`
ADD COLUMN `MBLNR` varchar(32) NULL COMMENT '物料凭证号' AFTER `review_comments`,
ADD COLUMN `ZEILE` varchar(10) NULL COMMENT '凭证项次' AFTER `MBLNR`,
ADD COLUMN `MJAHR` varchar(10) NULL COMMENT '凭证年份' AFTER `ZEILE`;
ADD COLUMN `code` varchar(10) NULL COMMENT 'MES返回状态码' AFTER `MJAHR`;
ADD COLUMN `msg` varchar(255) NULL COMMENT 'MES返回消息' AFTER `code`;
ALTER TABLE `topsun`.`mes_unqualified_materials`
DROP COLUMN `cause_analysis`,
DROP COLUMN `cause_analysis_person`,
DROP COLUMN `cause_analysis_date`,
DROP COLUMN `measure`,
DROP COLUMN `measure_person`,
DROP COLUMN `measure_date`,
DROP COLUMN `review_comments`;
ALTER TABLE `topsun`.`mes_unqualified_materials`
ADD COLUMN `result` varchar(10) NULL COMMENT '评审结果' AFTER `msg`;
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment