package com.platform.dao; import java.util.List; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import com.platform.entities.DataInfoEntity; import com.platform.entities.DataInfoEntityMoveTmp; import com.platform.entities.PagerOptions; import com.platform.entities.PreDataInfoFull; import com.platform.entities.RegionalismEntity; import com.platform.entities.SystemEntity; /** * @author chen * 数据迁移状态 临时 存放 , */ @Repository(value = "systemCodeDao") public interface ISystemCodeDao { /** 查 * @return * @throws Exception */ List findAllSystem() throws Exception; List findSubSystemByName(SystemEntity system) throws Exception; List findSubSystemByCode(SystemEntity system) throws Exception; List findByName(List list) throws Exception; List findByCode(List list) throws Exception; int insertBatch(List list) throws Exception; }