Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -53,6 +53,8 @@ public interface IdCardMapper extends BaseMapper<IdCard> {
|
||||
*/
|
||||
int selectAgentCount(@Param("certNo") String certNo, @Param("userId") String userId);
|
||||
|
||||
Integer getCountIdCard(@Param("certNo") String certNo);
|
||||
|
||||
/**
|
||||
* 获取未关联结算信息的对私结算身份证信息
|
||||
*
|
||||
|
||||
@@ -70,4 +70,10 @@
|
||||
AND ua.`userId` != #{userId}
|
||||
AND t1.`userType` = '01'
|
||||
</select>
|
||||
<select id="getCountIdCard" resultType="java.lang.Integer">
|
||||
SELECT count(`certNo`)
|
||||
FROM tb_pluss_id_card
|
||||
WHERE
|
||||
`certNo` = #{certNo}
|
||||
</select>
|
||||
</mapper>
|
||||
|
||||
Reference in New Issue
Block a user