工序计划

This commit is contained in:
cwchen 2024-03-22 18:31:54 +08:00
parent c6a424fe54
commit db13547036
1 changed files with 20 additions and 4 deletions

View File

@ -42,28 +42,44 @@ public class ProScheduleServiceImpl implements IProScheduleService {
@Override
public List<ProScheduleVo> getProScheduleLists(ProScheduleDto dto) {
List<ProScheduleVo> list = new ArrayList<>();
list = mapper.getProScheduleLists(dto);
try {
list = mapper.getProScheduleLists(dto);
} catch (Exception e) {
log.error("获取工程进度列表",e);
}
return list;
}
@Override
public List<GxPlanVo> getGxPlanLists(GxPlanDto dto) {
List<GxPlanVo> list = new ArrayList<>();
list = mapper.getGxPlanLists(dto);
try {
list = mapper.getGxPlanLists(dto);
} catch (Exception e) {
log.error("获取工序计划列表",e);
}
return list;
}
@Override
public AjaxResult getGxPlansIsDela(ProScheduleDto dto) {
List<String> list = new ArrayList<>();
list = mapper.getGxPlansIsDela(dto);
try {
list = mapper.getGxPlansIsDela(dto);
} catch (Exception e) {
log.error("工序计划延期提醒",e);
}
return AjaxResult.success(list);
}
@Override
public List<GxPlanProgressVo> getGxPlanProgressLists(ProScheduleDto dto) {
List<GxPlanProgressVo> list = new ArrayList<>();
list = mapper.getGxPlanProgressLists(dto);
try {
list = mapper.getGxPlanProgressLists(dto);
} catch (Exception e) {
log.error("获取工序计划进度列表",e);
}
return list;
}