| | |
| | | <if test="record.inviteId != null and record.inviteId != ''"> |
| | | and a.invite_id = #{record.inviteId} |
| | | </if> |
| | | <if test="record.username != null and record.username != ''"> |
| | | and a.username like CONCAT('%',#{record.username},'%') |
| | | </if> |
| | | </where> |
| | | order by create_time desc |
| | | </select> |
| | |
| | | and b.identity = #{identity} |
| | | |
| | | </select> |
| | | |
| | | <select id="getAppVersionListInPage" resultType="cc.mrbird.febs.dapp.entity.AppVersion"> |
| | | select a.* from app_version a |
| | | </select> |
| | | |
| | | <select id="getChargeListInPage" resultType="cc.mrbird.febs.dapp.entity.MemberCoinChargeEntity"> |
| | | select |
| | | a.*,b.username username |
| | | from member_coin_charge a |
| | | inner join dapp_member b on b.id = a.member_id |
| | | </select> |
| | | </mapper> |