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