Browse Source

驳回的时候新增取消面谈相关标记

anderx 8 months ago
parent
commit
e664968085

+ 37 - 0
src/main/java/com/goafanti/Interview/bo/UpdateUserBo.java

@@ -44,6 +44,43 @@ public class UpdateUserBo  extends UserArchives {
 
     private Integer type;
 
+    /**
+     * 开户行所在地-省
+     */
+    private Integer locationProvince;
+    /**
+     * 开户行所在地-市
+     */
+    private Integer locationCity;
+    /**
+     * 开户行所在地-区(县)
+     */
+    private Integer locationArea;
+
+    public Integer getLocationProvince() {
+        return locationProvince;
+    }
+
+    public void setLocationProvince(Integer locationProvince) {
+        this.locationProvince = locationProvince;
+    }
+
+    public Integer getLocationCity() {
+        return locationCity;
+    }
+
+    public void setLocationCity(Integer locationCity) {
+        this.locationCity = locationCity;
+    }
+
+    public Integer getLocationArea() {
+        return locationArea;
+    }
+
+    public void setLocationArea(Integer locationArea) {
+        this.locationArea = locationArea;
+    }
+
     public Integer getType() {
         return type;
     }

+ 3 - 0
src/main/java/com/goafanti/Interview/controller/UserArchivesInterviewController.java

@@ -106,6 +106,9 @@ public class UserArchivesInterviewController extends BaseController {
                 return res;
             }
         }
+        in2.setProvince(in.getLocationProvince());
+        in2.setCity(in.getLocationCity());
+        in2.setArea(in.getLocationArea());
         in2.setUid(in.getUid());
         customerService.updateUserDate(in2);
         return res.data(this.userArchivesInterviewService.updateUser(in));