傅行帆 преди 5 години
родител
ревизия
0e7dadbc67

+ 1
- 0
src/main/java/com/huiju/estateagents/controller/TaHousingResourcesController.java Целия файл

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

+ 8
- 0
src/main/java/com/huiju/estateagents/entity/TaPreselectionRecord.java Целия файл

@@ -65,5 +65,13 @@ public class TaPreselectionRecord implements Serializable {
65 65
      */
66 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
 }