# Conflicts: # .idea/workspace.xml # target/classes/com/example/cinema/bl/ScheduleServiceImpl.class
@@ -1,5 +1,6 @@
-package com.example.cinema.bl;
+package com.example.cinema.blImpl;
+import com.example.cinema.bl.AccountService;
import com.example.cinema.data.AccountMapper;
import com.example.cinema.vo.UserForm;
import com.example.cinema.vo.ResponseVO;
+import com.example.cinema.bl.HallService;
import com.example.cinema.data.HallMapper;
import org.springframework.beans.factory.annotation.Autowired;
+import com.example.cinema.bl.MovieService;
import com.example.cinema.data.MovieLikeMapper;
import com.example.cinema.data.MovieMapper;
+import com.example.cinema.bl.ScheduleService;
import com.example.cinema.data.ScheduleMapper;
+import com.example.cinema.bl.VIPService;
import com.example.cinema.data.VIPCardMapper;
import com.example.cinema.vo.VIPCardForm;
import com.example.cinema.po.VIPCard;
@@ -1,6 +1,6 @@
package com.example.cinema.controller;
-import com.example.cinema.bl.AccountServiceImpl;
+import com.example.cinema.blImpl.AccountServiceImpl;
import com.example.cinema.config.InterceptorConfiguration;