planin 작업중

This commit is contained in:
Suh
2024-01-18 18:23:22 +09:00
parent 149db2ff02
commit 0cd70e4137
8 changed files with 385 additions and 41 deletions

View File

@@ -33,4 +33,11 @@ public class PlanInService {
List<PlanInDto> selectById(PlanInDto dto){
return mapper.selectById(dto);
}
int deleteById(PlanInDto dto){
return mapper.deleteById(dto);
}
void insert(PlanInDto dto){
mapper.insert(dto);
}
}