模板、设备排序

This commit is contained in:
2025-02-20 18:37:23 +08:00
parent 7b40ae85d0
commit 240706c11c
19 changed files with 177 additions and 1 deletions

View File

@ -35,5 +35,9 @@ public interface TemplateMapper {
List<TemplateEntity> listEnabledByScenicId(Long scenicId);
List<TemplateEntity> listEnabled();
List<Long> listEnabledTemplateIdByScenicId(Long scenicId);
List<Long> listAllTemplateIdByScenicId(Long scenicId);
List<ContentPageVO> listFor(@Param("scenicId") Long scenicId);
int updateSort(Long templateId, Integer sort);
}