package com.bonus.newSettlement.dao; import java.util.List; import com.bonus.core.BonusBatis; import com.bonus.newSettlement.beans.MaTypeProjectStorageBean; import com.bonus.sys.BaseDao; @BonusBatis public interface MaTypeProjectStorageDao extends BaseDao { List findUnSltMaTypeList(MaTypeProjectStorageBean o); List findUnSltMaTypeLists(MaTypeProjectStorageBean o); Integer updateBean(MaTypeProjectStorageBean storage); int insertBean(MaTypeProjectStorageBean temp); List findCanBackListById(MaTypeProjectStorageBean storage); List findUnFinishMaTypeList(MaTypeProjectStorageBean o); Integer updateIsFinish(MaTypeProjectStorageBean storage); List findCancelBackListById(MaTypeProjectStorageBean storage); int updateCancelBean(MaTypeProjectStorageBean storage); }