|
@@ -27,7 +27,6 @@ import java.util.List;
|
|
|
* @Date: 2023-03-06
|
|
|
* @Version: V1.0
|
|
|
*/
|
|
|
-@Transactional
|
|
|
@Service
|
|
|
public class SyCostLossReviewServiceImpl extends ServiceImpl<SyCostLossReviewMapper, SyCostLossReview> implements ISyCostLossReviewService {
|
|
|
|
|
@@ -36,6 +35,7 @@ public class SyCostLossReviewServiceImpl extends ServiceImpl<SyCostLossReviewMap
|
|
|
@Autowired
|
|
|
private SyFabricLossReportServiceImpl syFabricLossReportService;
|
|
|
|
|
|
+
|
|
|
@Override
|
|
|
public IPage<SyCostLossReview> querylist(SyCostLossReview syCostLossReview,List<String> list, Page<SyCostLossReview> page) {
|
|
|
return syCostLossReviewMapper.querylist(syCostLossReview,list, page);
|
|
@@ -82,8 +82,8 @@ public class SyCostLossReviewServiceImpl extends ServiceImpl<SyCostLossReviewMap
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public List<String> queryCodeByPlanTable(String remarks, String planMan) {
|
|
|
- return syCostLossReviewMapper.queryCodeByPlanTable(remarks, planMan);
|
|
|
+ public List<String> queryCodeByPlanTable(String remarks, String planMan,String isPlanMan) {
|
|
|
+ return syCostLossReviewMapper.queryCodeByPlanTable(remarks, planMan,isPlanMan);
|
|
|
}
|
|
|
|
|
|
|