mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 03:55:17 +08:00
新增 用户解绑鉴权卡接口
This commit is contained in:
@@ -67,4 +67,6 @@ public interface PileAuthCardMapper {
|
||||
* @return 结果
|
||||
*/
|
||||
public int deletePileAuthCardByIds(Long[] ids);
|
||||
|
||||
int unBindingCard(PileAuthCard pileAuthCard);
|
||||
}
|
||||
|
||||
@@ -65,4 +65,6 @@ public interface IPileAuthCardService {
|
||||
* @return 结果
|
||||
*/
|
||||
public int deletePileAuthCardById(Long id);
|
||||
|
||||
int unBindingCard(PileAuthCard pileAuthCard);
|
||||
}
|
||||
|
||||
@@ -95,4 +95,9 @@ public class PileAuthCardServiceImpl implements IPileAuthCardService {
|
||||
public int deletePileAuthCardById(Long id) {
|
||||
return pileAuthCardMapper.deletePileAuthCardById(id);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int unBindingCard(PileAuthCard pileAuthCard) {
|
||||
return pileAuthCardMapper.unBindingCard(pileAuthCard);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user