| | |
| | | <mapper namespace="com.xcong.excoin.modules.coin.dao.MemberSelectSymbolsDao">
|
| | |
|
| | | <select id="selectSymbolByMemIdAndSymbol" resultType="com.xcong.excoin.modules.member.entity.MemberSelectSymbolsEntity">
|
| | | select id id,symbol symbol,member_id memId from member_select_symbols where member_id = #{memberId} and symbol = #{symbol}
|
| | | select id id,symbol symbol,member_id memberId from member_select_symbols where member_id = #{memberId} and symbol = #{symbol}
|
| | | </select>
|
| | | |
| | | <select id="selectSymbolByMemId" resultType="com.xcong.excoin.modules.member.entity.MemberSelectSymbolsEntity">
|
| | | select id id,symbol symbol,member_id memberId from member_select_symbols where member_id = #{memberId} GROUP BY symbol
|
| | | </select>
|
| | |
|
| | | </mapper> |