国网上送提交代码

This commit is contained in:
hzj
2024-01-04 11:01:31 +08:00
parent 9e1b97cae5
commit 98a52ab626

View File

@@ -107,6 +107,7 @@ public class PqTypicalSourceCreatePOServiceImpl extends ServiceImpl<PqTypicalSou
list = this.lambdaQuery() list = this.lambdaQuery()
.eq(PqTypicalSourceCreatePO::getStatisticalDate,uploadParam.getTime()) .eq(PqTypicalSourceCreatePO::getStatisticalDate,uploadParam.getTime())
.in(PqTypicalSourceCreatePO::getId,uploadParam.getList()) .in(PqTypicalSourceCreatePO::getId,uploadParam.getList())
.eq(PqTypicalSourceCreatePO::getStatisticalLevel,"3")
.list(); .list();
} }
//未指定数据上送,则将所有未上送的数据,上送上去 //未指定数据上送,则将所有未上送的数据,上送上去
@@ -114,6 +115,7 @@ public class PqTypicalSourceCreatePOServiceImpl extends ServiceImpl<PqTypicalSou
list = this.lambdaQuery() list = this.lambdaQuery()
.eq(PqTypicalSourceCreatePO::getStatisticalDate,uploadParam.getTime()) .eq(PqTypicalSourceCreatePO::getStatisticalDate,uploadParam.getTime())
.eq(PqTypicalSourceCreatePO::getIsUploadHead,0) .eq(PqTypicalSourceCreatePO::getIsUploadHead,0)
.eq(PqTypicalSourceCreatePO::getStatisticalLevel,"3")
.list(); .list();
} }
List<PqTypicalSourceCreateDTO> dtoList = BeanUtil.copyToList(list, PqTypicalSourceCreateDTO.class); List<PqTypicalSourceCreateDTO> dtoList = BeanUtil.copyToList(list, PqTypicalSourceCreateDTO.class);