package com.matrix.system.hive.service.imp; import java.util.List; import com.matrix.core.pojo.PaginationVO; import com.matrix.system.hive.dao.AllotedAndInstoredDao; import com.matrix.system.hive.pojo.AllotedAndInstored; import com.matrix.system.hive.service.AllotedAndInstoredService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; /** * * @date 2016-08-12 09:50 */ @Service("allotedAndInstoredService") public class AllotedAndInstoredServiceImpl implements AllotedAndInstoredService { @Autowired private AllotedAndInstoredDao allotedAndInstoredDao; @Override public int add(AllotedAndInstored obje) { return 0; } @Override public int modify(AllotedAndInstored obje) { return 0; } @Override public int remove(List list) { return 0; } @Override public int removeById(Long id) { return 0; } @Override public int findTotal(AllotedAndInstored obje) { return allotedAndInstoredDao.selectTotalRecord(obje); } @Override public AllotedAndInstored findById(Long id) { return null; } @Override public List findByModel(AllotedAndInstored obje) { return null; } @Override public List findInPage(AllotedAndInstored allotedAndInstored, PaginationVO pageVo) { return allotedAndInstoredDao.selectInPage(allotedAndInstored, pageVo); } }