Browse Source

国有建设用地使用权首次登记

gushoubang 1 tháng trước cách đây
mục cha
commit
b6dbcab4dd

+ 2 - 1
siwei-modules/siwei-apply/src/main/java/com/siwei/apply/service/impl/GyjsydscdjImpl.java

@@ -98,13 +98,14 @@ public class GyjsydscdjImpl implements GyjsydscdjService {
         if (item == null) {
             return null;
         }
+        BeanUtils.copyProperties(item,res);
+
         Project project = projectMapper.get(item.getProjectId());
         res.setProjectId(item.getProjectId());
         if (project != null) {
             res.setProjectName(project.getName());
             res.setProjectCode(project.getCode());
         }
-        BeanUtils.copyProperties(res, item);
         return res;
     }