mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 14:05:04 +08:00
新增 后管鉴权卡页面修改
This commit is contained in:
@@ -116,4 +116,20 @@
|
||||
where member_id = #{memberId,jdbcType=VARCHAR}
|
||||
and logic_card = #{logicCard,jdbcType=VARCHAR}
|
||||
</update>
|
||||
|
||||
<select id="getPileAuthCardInfoList" resultType="com.jsowell.pile.vo.web.PileAuthCardVO">
|
||||
select
|
||||
t1.id,
|
||||
t1.logic_card as logicCard,
|
||||
t1.physics_card as physicsCard,
|
||||
t1.member_id as memberId,
|
||||
t2.nick_name as nickName
|
||||
from pile_auth_card t1
|
||||
join member_basic_info t2 on t1.member_id = t2.member_id
|
||||
where t1.del_flag = '0'
|
||||
<if test="logicCard != null and logicCard != ''"> and logic_card = #{logicCard}</if>
|
||||
<if test="physicsCard != null and physicsCard != ''"> and physics_card = #{physicsCard}</if>
|
||||
<if test="status != null and status != ''"> and status = #{status}</if>
|
||||
<if test="memberId != null and memberId != ''"> and member_id = #{memberId}</if>
|
||||
</select>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user