|
@@ -7,6 +7,7 @@ import com.platform.common.exception.BusinessException;
|
|
|
import com.platform.common.util.StringUtils;
|
|
|
import com.platform.dao.bean.MyPage;
|
|
|
import com.platform.dao.bean.MyVOPage;
|
|
|
+import com.platform.dao.dto.fill.FillGatherInfoDTO;
|
|
|
import com.platform.dao.dto.fill.FillInfoDTO;
|
|
|
import com.platform.dao.entity.fill.FillGatherInfo;
|
|
|
import com.platform.dao.entity.fill.FillInfo;
|
|
@@ -41,6 +42,10 @@ public class FillInfoServiceImpl extends BaseServiceImpl<FillInfoMapper, FillInf
|
|
|
WeekendCriteria<FillInfo, Object> weekendCriteria = weekend.weekendCriteria();
|
|
|
weekendCriteria.andIn(FillInfo::getId, ids);
|
|
|
mapper.deleteByExample(weekend);
|
|
|
+ // 删除和填报内容项相关的标准
|
|
|
+ FillGatherInfoDTO dto = new FillGatherInfoDTO();
|
|
|
+ dto.setIds(ids);
|
|
|
+ fillGatherInfoMapper.deleteByInfoId(dto);
|
|
|
return 1;
|
|
|
}
|
|
|
|