package com.cloudcross.ssp.service; import java.util.List; import java.util.Map; import com.cloudcross.ssp.base.service.IGenericService; import com.cloudcross.ssp.model.Zone; import com.cloudcross.ssp.web.widget.SelectorController.ISelector; public interface IZoneService extends IGenericService { long findByName(String name); String deleteById(long id); public List findAdgroupNameByZoneIdAndSchedule(Map paramMap); //首页中通过设备查找用到,勿删 public List findByDevice(Integer device); /** * 根据设备和场景id查询广告位信息 * @author chenyou */ List findByDeviceAndPlaceId(Map paramMap); public Zone findZone(Long zoneId); public List findByOperatorId(Integer operatorId); List findDeliverEffectAnalysis(Map paramMap); //public AjaxResult fileUpload(HttpServletRequest request,HttpServletResponse response); //原back public List findByOperatorId(Long operatorId); int countByParamsBack(Map paramMap); Zone findByIdBack(Long id); List findByOperatorIdBack(Integer operatorId); Map> provideDataBack(String[] parentId); //根据媒体ID查询广告位 List queryZoneByCondition(Mapconditon); List queryZoneByAdgroupId(Long adgroupId); public Integer queryZoneCount(Mapcondition); public List queryZone(Mapcondition); }