planin 작업 완료

This commit is contained in:
Suh
2024-01-19 18:15:59 +09:00
parent 7dd68da7d2
commit 7aed18a27c
12 changed files with 590 additions and 48 deletions

View File

@@ -40,4 +40,16 @@ public class PlanInService {
void insert(PlanInDto dto){
mapper.insert(dto);
}
int delete(PlanInDto dto){
return mapper.delete(dto);
}
List<PlanInDto> selectByUrl(String id) {
return mapper.selectByUrl(id);
}
}