update 汇付会员账户表实体类

This commit is contained in:
2023-06-15 14:26:53 +08:00
parent 47b7ebc636
commit cdd2a217c3
5 changed files with 46 additions and 38 deletions

View File

@@ -58,4 +58,6 @@ public interface IAdapayMemberAccountService {
* @return 结果
*/
public int deleteAdapayMemberAccountById(Long id);
AdapayMemberAccount selectByMerchantId(String merchantId);
}

View File

@@ -87,4 +87,9 @@ public class AdapayMemberAccountServiceImpl implements IAdapayMemberAccountServi
public int deleteAdapayMemberAccountById(Long id) {
return adapayMemberAccountMapper.deleteAdapayMemberAccountById(id);
}
@Override
public AdapayMemberAccount selectByMerchantId(String merchantId) {
return adapayMemberAccountMapper.selectByMerchantId(merchantId);
}
}