package com.bonus.index.service; import java.util.List; import com.bonus.index.beans.IndexHomeBean; import com.bonus.index.beans.IndexHomeResourseBean; import com.bonus.index.beans.PartFiveBean; import com.bonus.index.beans.PartThreeBean; import com.bonus.sys.BaseService; public interface IndexHomeService extends BaseService{ List getPartOneData(IndexHomeBean o); List getPartTwoData(IndexHomeBean o); List getPartThreeData(IndexHomeBean o); List getPartFourData(IndexHomeBean o); List getPartFiveData(IndexHomeBean o); List getPartSixData(IndexHomeBean o); void insertIndexInfo(); List getHomeResource(IndexHomeResourseBean o); List getResource(IndexHomeResourseBean o); int saveResourse(IndexHomeResourseBean o); }