Commit c69c2ec3 authored by 郝彦辉's avatar 郝彦辉

A1要求uploadTs时间为真实时间

parent 7354feb8
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -61,7 +61,11 @@
select
a.id reqID
,'A' opCode
,DATE_FORMAT(now(),'%Y-%m-%dT%H:%i:%S') uploadTs
-- ,DATE_FORMAT(now(),'%Y-%m-%dT%H:%i:%S') uploadTs
,DATE_FORMAT(case when i.created_at is null and h.created_at <= f.created_at then h.created_at
when i.created_at is null and h.created_at>f.created_at then f.created_at
else i.created_at end,'%Y-%m-%dT%H:%i:%S') as uploadTs
,'1' isFinTechAgencyBusiness
,DATE_FORMAT(case when i.created_at is null and h.created_at <= f.created_at then h.created_at
when i.created_at is null and h.created_at>f.created_at then f.created_at
......@@ -115,7 +119,11 @@
select
a.id reqID
,'A' opCode
,DATE_FORMAT(now(),'%Y-%m-%dT%H:%i:%S') uploadTs
-- ,DATE_FORMAT(now(),'%Y-%m-%dT%H:%i:%S') uploadTs
,DATE_FORMAT(case when i.created_at is null and h.created_at <= f.created_at then h.created_at
when i.created_at is null and h.created_at>f.created_at then f.created_at
else i.created_at end,'%Y-%m-%dT%H:%i:%S') as uploadTs
,'1' isFinTechAgencyBusiness
,DATE_FORMAT(case when i.created_at is null and h.created_at <=f.created_at then h.created_at
when i.created_at is null and h.created_at>f.created_at then f.created_at
......
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