|
|
|
|
38
|
"RIGHT JOIN ta_activity_enroll tace ON tac.activity_id = tace.activity_id " +
|
38
|
"RIGHT JOIN ta_activity_enroll tace ON tac.activity_id = tace.activity_id " +
|
39
|
"LEFT JOIN ta_customer tacus ON tace.customer_id = tacus.customer_id " +
|
39
|
"LEFT JOIN ta_customer tacus ON tace.customer_id = tacus.customer_id " +
|
40
|
"LEFT JOIN ta_building tab ON tac.building_id = tab.building_id " +
|
40
|
"LEFT JOIN ta_building tab ON tac.building_id = tab.building_id " +
|
41
|
- "WHERE tacus.openid = #{openid} tac.status > -1")
|
|
|
|
|
41
|
+ "WHERE tacus.openid = #{openid} and tac.status > -1")
|
42
|
IPage<Activity> selectOpenidActivityEnroll(Page page, @Param("openid") String openid);
|
42
|
IPage<Activity> selectOpenidActivityEnroll(Page page, @Param("openid") String openid);
|
43
|
|
43
|
|
44
|
}
|
44
|
}
|