package com.bonus.index.service; import java.util.List; import java.util.Map; import com.bonus.index.beans.IndexDetailVo; import com.bonus.index.beans.IndexHomeBean; import com.bonus.index.beans.IndexHomeResourseBean; import com.bonus.index.beans.IndexProAndNum; import com.bonus.index.beans.PartFiveBean; import com.bonus.index.beans.PartSixBean; import com.bonus.index.beans.PartThreeBean; import com.bonus.sys.BaseService; import com.github.pagehelper.PageInfo; 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); /** * 查询工程领料、退料、维修检验、机具报废、修试后入库、新购入库、库存盘点数量 * @param o * @return */ PageInfo getProAndNum(IndexHomeBean o); }