feat:trans

This commit is contained in:
suzhuhong
2026-04-15 18:02:18 +08:00
parent 19bce915ac
commit fa83eeb484
5 changed files with 80 additions and 0 deletions

View File

@@ -17,6 +17,10 @@ public class PreAllocationRecordDAO {
return preAllocationRecordMapper.insertSelective(record) > 0;
}
public boolean updateByPrimaryKeySelective(PreAllocationRecordDO record) {
return preAllocationRecordMapper.updateByPrimaryKeySelective(record) > 0;
}
public PreAllocationRecordDO getById(Long id) {
return preAllocationRecordMapper.getById(id);
}