| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- 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<TacInspYearBatchObj, TacInspYearBatchObjParam> {
- List<TacInspYearBatchObjDto> getObjList(TacInspYearBatchObjParam tacInspYearBatchObjParam);
- List<TacInspYearBatchObjDto> objslistbybatch(TacInspYearBatchObjParam tacInspYearBatchObjParam);
- int insertBatchObj(TacObjDto dto);
- PageInfo<TacInspYearBatchObjDto> getObjPage(TacInspYearBatchObjParam tacInspYearBatchObjParam);
- int cleanObjById(TacInspYearBatchObjParam tacInspYearBatchObjParam);
- List<TacAttPawpBase> getBaseNotInGroupByGroupId(TacInspYearBatchObjParam param);
- PageInfo<TacAttPawpBase> getBaseNotInGroupPageByGroupId(TacInspYearBatchObjParam param);
- BisInspAllNode getObjTreeList(TacInspYearBatchObjParam param);
- List<TacInspYearBatchObjDto> getObjListByPersId(TacInspYearBatchObjParam param);
- PageInfo<TacInspYearBatchObjDto> getObjPageByPersId(TacInspYearBatchObjParam param);
- List<TacInspYearBatchObjDto> getObjListByNameAndYear(TacInspYearBatchObjParam param);
- // ------------------------- 自定方法 -------------------------
- }
|