傅行帆 5 lat temu
rodzic
commit
0e7dadbc67

+ 1
- 0
src/main/java/com/huiju/estateagents/controller/TaHousingResourcesController.java Wyświetl plik

102
     public ResponseBean taHousingResourcesDelete(@PathVariable Integer id) {
102
     public ResponseBean taHousingResourcesDelete(@PathVariable Integer id) {
103
         ResponseBean responseBean = new ResponseBean();
103
         ResponseBean responseBean = new ResponseBean();
104
         try {
104
         try {
105
+            //校验是否有预选记录 todo
105
             TaHousingResources taHousingResources = new TaHousingResources();
106
             TaHousingResources taHousingResources = new TaHousingResources();
106
             taHousingResources.setHouseId(id);
107
             taHousingResources.setHouseId(id);
107
             taHousingResources.setStatus(CommConstant.STATUS_DELETE);
108
             taHousingResources.setStatus(CommConstant.STATUS_DELETE);

+ 8
- 0
src/main/java/com/huiju/estateagents/entity/TaPreselectionRecord.java Wyświetl plik

65
      */
65
      */
66
     private Integer updateUser;
66
     private Integer updateUser;
67
 
67
 
68
+    /**
69
+     * 销售批次id
70
+     */
71
+    private Integer salesBatchId;
68
 
72
 
73
+    /**
74
+     * 楼盘id
75
+     */
76
+    private String buildingId;
69
 }
77
 }