|
12345678910111213141516171819202122232425262728293031323334 |
- [server]
- #host = "10.180.4.88"
- host = "127.0.0.1"
-
- port = 9090
-
- [client]
- # 定时任务配置
- interval_seconds = 3600 # 每隔多少秒执行一次
- max_retries = 3
- read_timeout_secs = 10
- write_timeout_secs = 10
- retry_delay_secs = 2
-
- [database]
- host = "10.180.4.100"
- port = 5432
- name = "Auseft_RL_Web"
- user = "postgres"
- password = "Auseft@2025qwer"
-
- # 要同步的表配置
- [[tables]]
- name = "comm_bm_vehicleinfo"
- query = "SELECT id, licenseplate, type, grosswt::text as grosswt, tarewt::text as tarewt, owner, dl, supervision, outage, insurancedate, insurancenum, lock, transcompany, createdby, creationtime, modifiedby, modifiedtime, reviewed, reviewedby, reviewedtime, remarks, phonenumber, electronicnumber, rfidmodifiedtime, rfidstop, rfidstopby, rfidstoptime, rfidgrantby, rfidgranttime, samplingpoints, drawbar, carriagelength::text as carriagelength , carriagewidth::text as carriagewidth, carriageheight::text as carriageheight, underbodyheight::text as underbodyheight, frontsampling, backsampling, rod1::text as rod1, rod2::text as rod2, rod3::text as rod3, rod4::text as rod4, rod5::text as rod5, rod6::text as rod6, supplier_id, supplier_name, material_id, material_name,group_type FROM public.comm_bm_vehicleinfo"
- incremental = false
- key_field = "UpdateTime"
-
-
-
-
-
-
-
|