首页-国家列表-后台-参数-isHome
This commit is contained in:
@@ -63,17 +63,17 @@ public class RoomTabRegionAdminController extends BaseController {
|
||||
}
|
||||
|
||||
@PostMapping("/save")
|
||||
public BusiResult<Void> save(Long id, Long roomUid, Integer tabId, Boolean isTop, Integer seq, String topStart, String topEnd, Boolean isShow) {
|
||||
public BusiResult<Void> save(Long id, Long roomUid, Integer tabId, Boolean isTop, Integer seq, String topStart, String topEnd, Boolean isHome) {
|
||||
if (seq == null) {
|
||||
seq = 99;
|
||||
}
|
||||
if (isTop == null) {
|
||||
isTop = false;
|
||||
}
|
||||
if (isShow == null) {
|
||||
isShow = false;
|
||||
if (isHome == null) {
|
||||
isHome = false;
|
||||
}
|
||||
service.save(id, roomUid, tabId, seq, isTop, topStart, topEnd, isShow);
|
||||
service.save(id, roomUid, tabId, seq, isTop, topStart, topEnd, isHome);
|
||||
return BusiResult.success();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user