|
@@ -84,7 +84,7 @@ public class BuildingSpecialRoomController extends BaseController {
|
84
|
84
|
* @return
|
85
|
85
|
*/
|
86
|
86
|
@ApiOperation(value = "admin-保存特价房源", notes = "admin-保存特价房源")
|
87
|
|
- @RequestMapping(value="/buildingSpecialRoom",method= RequestMethod.POST)
|
|
87
|
+ @RequestMapping(value="/admin/buildingSpecialRoom",method= RequestMethod.POST)
|
88
|
88
|
public ResponseBean buildingSpecialRoomAdd(@RequestBody BuildingSpecialRoomDTO buildingSpecialRoomDTO, @RequestHeader("authorization") String token, HttpServletRequest request){
|
89
|
89
|
ResponseBean responseBean = new ResponseBean();
|
90
|
90
|
try {
|
|
@@ -112,7 +112,7 @@ public class BuildingSpecialRoomController extends BaseController {
|
112
|
112
|
*/
|
113
|
113
|
@ApiOperation(value = "admin-删除特价房源", notes = "admin-删除特价房源")
|
114
|
114
|
@ResponseBody
|
115
|
|
- @RequestMapping(value="/buildingSpecialRoom/{id}", method= RequestMethod.DELETE)
|
|
115
|
+ @RequestMapping(value="/admin/buildingSpecialRoom/{id}", method= RequestMethod.DELETE)
|
116
|
116
|
public ResponseBean buildingSpecialRoomDelete(@PathVariable String id, @RequestHeader("authorization") String token, HttpServletRequest request){
|
117
|
117
|
ResponseBean responseBean = new ResponseBean();
|
118
|
118
|
try {
|
|
@@ -136,7 +136,7 @@ public class BuildingSpecialRoomController extends BaseController {
|
136
|
136
|
* @return
|
137
|
137
|
*/
|
138
|
138
|
@ApiOperation(value = "admin-修改特价房源", notes = "admin-修改特价房源")
|
139
|
|
- @RequestMapping(value="/buildingSpecialRoom/{id}",method= RequestMethod.PUT)
|
|
139
|
+ @RequestMapping(value="/admin/buildingSpecialRoom/{id}",method= RequestMethod.PUT)
|
140
|
140
|
public ResponseBean buildingSpecialRoomUpdate(@PathVariable String id,
|
141
|
141
|
@RequestBody BuildingSpecialRoomDTO buildingSpecialRoomDTO, @RequestHeader("authorization") String token, HttpServletRequest request){
|
142
|
142
|
ResponseBean responseBean = new ResponseBean();
|
|
@@ -162,7 +162,7 @@ public class BuildingSpecialRoomController extends BaseController {
|
162
|
162
|
* @param id 实体ID
|
163
|
163
|
*/
|
164
|
164
|
@ApiOperation(value = "admin-获取特价房源详情", notes = "admin-获取特价房源详情")
|
165
|
|
- @RequestMapping(value="/buildingSpecialRoom/{id}",method= RequestMethod.GET)
|
|
165
|
+ @RequestMapping(value="/admin/buildingSpecialRoom/{id}",method= RequestMethod.GET)
|
166
|
166
|
public ResponseBean buildingSpecialRoomGet(@PathVariable String id, @RequestHeader("authorization") String token, HttpServletRequest request){
|
167
|
167
|
ResponseBean responseBean = new ResponseBean();
|
168
|
168
|
try {
|