package com.goafanti.star.service; import java.util.List; import com.goafanti.common.model.Star; import com.goafanti.star.bo.BigShotStarListBo; import com.goafanti.star.bo.HotStarListBo; public interface StarService { List listHotStar(); List listStarList(); void save(List star, String[] hot); List listBigShotStar(); }