LiveService.java 396 Bytes
package com.bjivt.service.showtime;

import java.util.List;

import com.bjivt.base.service.BaseService;
import com.bjivt.entity.showtime.Live;
import com.bjivt.util.Pager;

public interface LiveService extends BaseService<Live, Integer>{

	public List<Live> findStarLiveListByPage(Live live, Pager page);
	
	List<Live> findLiveListByPage(Live live,String startTime, String endTime, Pager page);
}