首页-国家列表-后台-参数-isHome

This commit is contained in:
khalil
2025-07-28 11:48:30 +08:00
parent 5132051605
commit cc6efe3576

View File

@@ -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();
}