Commit 679474e1 authored by 赵啸非's avatar 赵啸非

修改热门词汇

parent 337fb4ec
Pipeline #2428 failed with stages
...@@ -53,10 +53,8 @@ public class MatterServiceImpl extends AbstractCRUDServiceImpl<MatterDao, Matter ...@@ -53,10 +53,8 @@ public class MatterServiceImpl extends AbstractCRUDServiceImpl<MatterDao, Matter
protected void findAfter(MatterEntity entity, PageInfo pageInfo, Context context, List<MatterEntity> list) throws AppException { protected void findAfter(MatterEntity entity, PageInfo pageInfo, Context context, List<MatterEntity> list) throws AppException {
for (MatterEntity matterEntity : list) { for (MatterEntity matterEntity : list) {
matterEntity.setDatumCount(matterEntity.getMatterDatumList().size()); matterEntity.setDatumCount(matterEntity.getMatterDatumList().size());
matterEntity.getMatterDatumList().forEach(matterDatumEntity -> { matterEntity.getMatterDatumList().forEach(matterDatumEntity -> {
matterDatumEntity.setMatterName(matterEntity.getMatterName()); matterDatumEntity.setMatterName(matterEntity.getMatterName());
matterDatumEntity.setMateriaFullName(matterEntity.getMatterFullName());
matterDatumEntity.setMatterNo(matterEntity.getMatterNo()); matterDatumEntity.setMatterNo(matterEntity.getMatterNo());
matterDatumEntity.setDeptCode(matterEntity.getDeptCode()); matterDatumEntity.setDeptCode(matterEntity.getDeptCode());
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment