package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.dto.TacInspYearBatchAreaDto; import cn.com.goldenwater.dcproj.model.BisInspAllNode; import cn.com.goldenwater.dcproj.model.TacInspYearBatchArea; import cn.com.goldenwater.dcproj.param.TacInspYearBatchAreaParam; import com.github.pagehelper.PageInfo; import java.util.List; import java.util.Map; /** * @author lune * @date 2019-9-6 */ public interface TacInspYearBatchAreaService extends CrudService { int deleteYearBatchArearByGroupId(String groupId); List getAreaListById(TacInspYearBatchAreaParam tacInspYearBatchAreaParam); List> areasListByBatch(TacInspYearBatchAreaParam tacInspYearBatchAreaParam); TacInspYearBatchAreaDto getAreaListByBatchId(TacInspYearBatchAreaParam tacInspYearBatchAreaParam); BisInspAllNode getObjTreeAreaList(TacInspYearBatchAreaParam param); PageInfo listByList(Map paramMap); // ------------------------- 自定方法 ------------------------- }