diff --git a/src/main/java/com/jflyfox/modules/admin/video/controller/VideoalbumController.java b/src/main/java/com/jflyfox/modules/admin/video/controller/VideoalbumController.java index 5f5333ffb4c703b32aae5c27ceab187a3d23ee34..e26c9cf1374b96dc344b7ca81f52ec91a95b7983 100644 --- a/src/main/java/com/jflyfox/modules/admin/video/controller/VideoalbumController.java +++ b/src/main/java/com/jflyfox/modules/admin/video/controller/VideoalbumController.java @@ -24,7 +24,7 @@ public class VideoalbumController extends BaseProjectController { TbVideoAlbum model = getModelByAttr(TbVideoAlbum.class); SQLUtils sql = new SQLUtils(" from tb_video_album t " - + " left join tb_image_album f on f.id = t.parent_id where 1=1 "); + + " left join tb_video_album f on f.id = t.parent_id where 1=1 "); if (model.getAttrValues().length != 0) { sql.setAlias("t"); sql.whereLike("name", model.getStr("name"));