package cn.com.goldenwater.dcproj.dao; import cn.com.goldenwater.dcproj.dto.TacInspYearBatchObjDto; import cn.com.goldenwater.dcproj.model.TacAttPawpBase; import cn.com.goldenwater.dcproj.model.TacInspYearBatchObj; import cn.com.goldenwater.core.persistence.CrudDao; import cn.com.goldenwater.dcproj.param.TacInspYearBatchObjParam; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface TacInspYearBatchObjDao extends CrudDao { List getObjList(TacInspYearBatchObjParam tacInspYearBatchObjParam); List objslistbybatch(TacInspYearBatchObjParam tacInspYearBatchObjParam); List getBaseNotInGroupByGroupId(TacInspYearBatchObjParam param); List getObjTreeList(TacInspYearBatchObjParam param); List getObjAndType(TacInspYearBatchObjParam param); List getObjListByPersId(TacInspYearBatchObjParam param); List getObjListByGroupIdList(List groupIdList); }