Browse Source

林长接口增加字段

hanfucheng 11 months ago
parent
commit
8f230412d8

+ 6 - 0
src/main/java/com/sooka/sponest/data/digitalforest/domain/bo/ForestLeaderBO.java

@@ -18,4 +18,10 @@ public class ForestLeaderBO {
     String linJob;
     String linJob;
     String linLabel;
     String linLabel;
 
 
+    //行政职务
+    private String strativeLinJob;
+
+    //责任区
+    private String linResponsibility;
+
 }
 }

+ 4 - 2
src/main/resources/mapper/digitalforest/ForestViewMapper.xml

@@ -86,7 +86,9 @@
             u.phonenumber AS phonenumber,
             u.phonenumber AS phonenumber,
             a.lin_phone AS linPhone,
             a.lin_phone AS linPhone,
             a.lin_job linJob,
             a.lin_job linJob,
-            b.dict_label linLabel
+            b.dict_label linLabel,
+            a.lin_responsibility linResponsibility,
+            a.admini_strative_lin_job strativeLinJob
         FROM
         FROM
         centerdata_t_forest_linleader a
         centerdata_t_forest_linleader a
         LEFT JOIN ${database_system}.sys_dept d ON a.dept_id = d.dept_id
         LEFT JOIN ${database_system}.sys_dept d ON a.dept_id = d.dept_id
@@ -110,4 +112,4 @@
         </choose>
         </choose>
         order by a.num,a.create_time desc
         order by a.num,a.create_time desc
     </select>
     </select>
-</mapper>
+</mapper>