update 新增桩时判断编号

This commit is contained in:
Lemon
2023-08-26 09:46:46 +08:00
parent 543a23e597
commit 871dbe4882
8 changed files with 56 additions and 6 deletions

View File

@@ -788,4 +788,13 @@ public class PileBasicInfoServiceImpl implements IPileBasicInfoService {
}
return resultList;
}
/**
* 获取最新一条桩的数据
* @return
*/
@Override
public PileBasicInfo getMaxNumPileInfo() {
return pileBasicInfoMapper.getMaxNumPileInfo();
}
}