This website works better with JavaScript.
Home
Explore
Help
Sign In
server
/
formallProject
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
[停车][修改]:停车数据入库修改,15分钟内缴费记录update,不再insert
release_toaliyun_real
Stormeye Wu
6 years ago
parent
6e10c39f65
commit
d09a3f3830
2 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
mallinkCallback/src/main/java/com/iformall/controller/callback/WxCarCallBackController.java
+3
-0
mallinkService/src/main/resources/mapper/WxCarPayRecordMapper.xml
+ 1
- 0
mallinkCallback/src/main/java/com/iformall/controller/callback/WxCarCallBackController.java
View File
@@ -439,6 +439,7 @@ public class WxCarCallBackController extends BaseController {
WxCarPayRecord query = new WxCarPayRecord();
query.setSynId(orderId);
query.setFee(fee);
if(feeTime != null) {
query.setFeeTime(feeTime);
}
+ 3
- 0
mallinkService/src/main/resources/mapper/WxCarPayRecordMapper.xml
View File
@@ -44,6 +44,9 @@
<if test=" null != feeTimeStr ">
and `fee_time` = #{feeTimeStr}
</if>
<if test=" null != fee ">
and `fee` = #{fee}
</if>
<if test=" null != feeTime ">
and TIMESTAMPDIFF(MINUTE, `fee_time`, #{feeTime}) <= 15
</if>
Write
Preview
Loading…
Cancel
Save