| | |
| | | #{item} |
| | | </foreach> |
| | | </select> |
| | | |
| | | |
| | | <select id="getChouJiangListInPage" resultType="cc.mrbird.febs.mall.entity.CjInfo"> |
| | | select |
| | | a.*, |
| | | c.phone |
| | | from cj_info a |
| | | left join mall_member c on a.member_id = c.id |
| | | <where> |
| | | <if test="record.phone != null and record.phone != ''"> |
| | | and c.phone=#{record.phone} |
| | | </if> |
| | | <if test="record.kjNo != null and record.kjNo != ''"> |
| | | and a.kj_no=#{record.kjNo} |
| | | </if> |
| | | <if test="record.kjState != null and record.kjState != ''"> |
| | | and a.kj_state=#{record.kjState} |
| | | </if> |
| | | <if test="record.zjState != null and record.zjState != ''"> |
| | | and a.zj_state=#{record.zjState} |
| | | </if> |
| | | </where> |
| | | order by a.created_time desc |
| | | </select> |
| | | </mapper> |