update 创建汇付企业会员

This commit is contained in:
2023-07-10 17:39:08 +08:00
parent 858568d3c1
commit c41adbe3b3
6 changed files with 44 additions and 3 deletions

View File

@@ -64,4 +64,6 @@ public interface AdapayMemberAccountMapper {
AdapayMemberAccount selectByMerchantId(String merchantId);
void deleteByMemberId(String memberId);
void updateAdapayMemberAccountByMemberId(AdapayMemberAccount adapayMemberAccount);
}

View File

@@ -64,4 +64,6 @@ public interface IAdapayMemberAccountService {
String selectAdapayMemberIdByStationId(String stationId);
void deleteByMemberId(String memberId);
void updateAdapayMemberAccountByMemberId(AdapayMemberAccount adapayMemberAccount);
}

View File

@@ -74,7 +74,7 @@ public class AdapayMemberAccountServiceImpl implements IAdapayMemberAccountServi
*/
@Override
public int updateAdapayMemberAccount(AdapayMemberAccount adapayMemberAccount) {
adapayMemberAccount.setUpdateTime(DateUtils.getNowDate());
// adapayMemberAccount.setUpdateTime(DateUtils.getNowDate());
return adapayMemberAccountMapper.updateAdapayMemberAccount(adapayMemberAccount);
}
@@ -131,4 +131,9 @@ public class AdapayMemberAccountServiceImpl implements IAdapayMemberAccountServi
public void deleteByMemberId(String memberId) {
adapayMemberAccountMapper.deleteByMemberId(memberId);
}
@Override
public void updateAdapayMemberAccountByMemberId(AdapayMemberAccount adapayMemberAccount) {
adapayMemberAccountMapper.updateAdapayMemberAccountByMemberId(adapayMemberAccount);
}
}