修复 mp_account 错误拼成 pay_account 的问题

This commit is contained in:
YunaiV 2023-07-28 19:40:05 +08:00
parent 7f7a3c589b
commit 3dd4700ce4

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);
} }