Browse Source

ww没想到手写的insert

dev
yinzuomei 3 years ago
parent
commit
224655cbcc
  1. 18
      epmet-module/gov-issue/gov-issue-server/src/main/resources/mapper/IssueDao.xml

18
epmet-module/gov-issue/gov-issue-server/src/main/resources/mapper/IssueDao.xml

@ -115,6 +115,15 @@
<if test ='null != suggestion'>
suggestion,
</if>
<if test ='null != address'>
ADDRESS,
</if>
<if test ='null != longitude'>
LONGITUDE,
</if>
<if test ='null != latitude'>
LATITUDE,
</if>
<if test ='null != customerId'>
customer_id,
</if>
@ -186,6 +195,15 @@
<if test ='null != suggestion'>
#{suggestion},
</if>
<if test ='null != address'>
#{address},
</if>
<if test ='null != longitude'>
#{longitude},
</if>
<if test ='null != latitude'>
#{latitude},
</if>
<if test ='null != customerId'>
#{customerId},
</if>

Loading…
Cancel
Save