修复 mp_account 错误拼成 pay_account 的问题

pull/46/head
YunaiV 2023-07-28 19:40:05 +08:00
parent 7f7a3c589b
commit 3dd4700ce4
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ public interface MpAccountMapper extends BaseMapperX<MpAccountDO> {
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);
}