package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.dto.TacInspYearBatchObjDto; import cn.com.goldenwater.dcproj.dto.TacObjDto; import cn.com.goldenwater.dcproj.model.BisInspAllNode; import cn.com.goldenwater.dcproj.model.TacAttPawpBase; import cn.com.goldenwater.dcproj.model.TacInspYearBatchObj; import cn.com.goldenwater.dcproj.param.TacInspYearBatchObjParam; import com.github.pagehelper.PageInfo; import java.util.List; /** * @author lune * @date 2019-9-6 */ public interface TacInspYearBatchObjService extends CrudService { List getObjList(TacInspYearBatchObjParam tacInspYearBatchObjParam); List objslistbybatch(TacInspYearBatchObjParam tacInspYearBatchObjParam); int insertBatchObj(TacObjDto dto); PageInfo getObjPage(TacInspYearBatchObjParam tacInspYearBatchObjParam); int cleanObjById(TacInspYearBatchObjParam tacInspYearBatchObjParam); List getBaseNotInGroupByGroupId(TacInspYearBatchObjParam param); PageInfo getBaseNotInGroupPageByGroupId(TacInspYearBatchObjParam param); BisInspAllNode getObjTreeList(TacInspYearBatchObjParam param); List getObjListByPersId(TacInspYearBatchObjParam param); PageInfo getObjPageByPersId(TacInspYearBatchObjParam param); List getObjListByNameAndYear(TacInspYearBatchObjParam param); // ------------------------- 自定方法 ------------------------- }