修复 mp_account 错误拼成 pay_account 的问题

This commit is contained in:
YunaiV 2023-07-28 19:39:40 +08:00
parent 48f5d3f0e2
commit 418ae829da

View File

@ -25,7 +25,7 @@ public interface MpAccountMapper extends BaseMapperX<MpAccountDO> {
return selectOne(MpAccountDO::getAppId, appId); return selectOne(MpAccountDO::getAppId, appId);
} }
@Select("SELECT COUNT(*) FROM pay_account WHERE update_time > #{maxUpdateTime}") @Select("SELECT COUNT(*) FROM mp_account WHERE update_time > #{maxUpdateTime}")
Long selectCountByUpdateTimeGt(LocalDateTime maxUpdateTime); Long selectCountByUpdateTimeGt(LocalDateTime maxUpdateTime);
} }