修复卡解绑接口,增加去重条件(去掉冗余无用重复数据)
This commit is contained in:
parent
52be3c7f4c
commit
04aeeb1391
@ -83,7 +83,7 @@ public class CardList {
|
||||
private String userAccount;
|
||||
|
||||
/**
|
||||
* 卡记录id
|
||||
* 初始化后的卡的记录id
|
||||
*/
|
||||
@JsonProperty("cardRecordId")
|
||||
private Integer cardRecordId;
|
||||
|
||||
@ -224,7 +224,9 @@
|
||||
select
|
||||
<include refid="Base_Column_List"/>
|
||||
from xhpc_ic_card_info
|
||||
where t_iccard_info_id = #{id}
|
||||
where
|
||||
t_iccard_info_id = #{id}
|
||||
and del_flag = 0
|
||||
</select>
|
||||
<select id="selectByAccount" resultType="java.util.Map">
|
||||
SELECT o.user_type,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user