|
|
@ -8,6 +8,7 @@ import org.springframework.stereotype.Repository;
|
|
|
|
import com.platform.entities.DataInfoEntity;
|
|
|
|
import com.platform.entities.DataInfoEntity;
|
|
|
|
import com.platform.entities.DataInfoEntityMoveTmp;
|
|
|
|
import com.platform.entities.DataInfoEntityMoveTmp;
|
|
|
|
import com.platform.entities.PagerOptions;
|
|
|
|
import com.platform.entities.PagerOptions;
|
|
|
|
|
|
|
|
import com.platform.entities.PreDataInfoFull;
|
|
|
|
import com.platform.entities.RegionalismEntity;
|
|
|
|
import com.platform.entities.RegionalismEntity;
|
|
|
|
import com.platform.entities.SystemEntity;
|
|
|
|
import com.platform.entities.SystemEntity;
|
|
|
|
|
|
|
|
|
|
|
@ -24,5 +25,13 @@ public interface ISystemCodeDao {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
List<SystemEntity> findAllSystem() throws Exception;
|
|
|
|
List<SystemEntity> findAllSystem() throws Exception;
|
|
|
|
|
|
|
|
|
|
|
|
List<SystemEntity> findSubSystem(SystemEntity system) throws Exception;
|
|
|
|
List<SystemEntity> findSubSystemByName(SystemEntity system) throws Exception;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<SystemEntity> findSubSystemByCode(SystemEntity system) throws Exception;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<SystemEntity> findByName(List<String> list) throws Exception;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<SystemEntity> findByCode(List<String> list) throws Exception;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int insertBatch(List<String> list) throws Exception;
|
|
|
|
}
|
|
|
|
}
|
|
|
|