You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
383 B
16 lines
383 B
package com.service;
|
|
|
|
import java.util.List;
|
|
|
|
import com.entity.Hall;
|
|
|
|
public interface IHallService {
|
|
Hall findHallById(long hall_id);
|
|
Hall findHallByCinemaAndHallName(String cinema_name,String hall_name);
|
|
Integer addHall(Hall hall);
|
|
Integer updateHall(Hall hall);
|
|
Integer deleteHall(long hall_id);
|
|
List<Hall> findHallByCinemaId(long cinema_id);
|
|
List<Hall> findAllHalls();
|
|
}
|