package com.example.demo.repository;

import java.util.List;
import java.util.UUID;

import com.example.demo.entity.Adunits;

public interface AdunitsTempCustomRepo {
	List<Adunits> getallDetails(String name, List<UUID> publisher, List<Integer> env_type, List<String> adunit_type,
			List<Integer> status, List<Integer> is_deleted, List<UUID> idList);
}
