Browse Source

积分审核详情缺少备注

master
zhaoqifeng 3 years ago
parent
commit
31934197e6
  1. 4
      epmet-module/epmet-point/epmet-point-server/src/main/resources/mapper/PointApplyDao.xml

4
epmet-module/epmet-point/epmet-point-server/src/main/resources/mapper/PointApplyDao.xml

@ -52,6 +52,7 @@
<result property="createdTime" column="CREATED_TIME"/>
<result property="ruleName" column="RULE_NAME"/>
<result property="pointValue" column="POINT_VALUE"/>
<result property="remark" column="REMARK"/>
<collection property="annexList" ofType="java.lang.String">
<result column="URL"/>
</collection>
@ -73,7 +74,8 @@
a.CREATED_TIME,
b.RULE_NAME,
b.POINT_VALUE,
c.URL
c.URL,
a.REMARK
FROM
point_apply a
INNER JOIN point_additive_rule b ON a.RULE_ID = b.ID AND a.CUSTOMER_ID = b.CUSTOMER_ID

Loading…
Cancel
Save