4eed9cc46dfe8c113da6409ff4022704181c6347.svn-base 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.dto.TacInspYearBatchObjDto;
  4. import cn.com.goldenwater.dcproj.dto.TacObjDto;
  5. import cn.com.goldenwater.dcproj.model.BisInspAllNode;
  6. import cn.com.goldenwater.dcproj.model.TacAttPawpBase;
  7. import cn.com.goldenwater.dcproj.model.TacInspYearBatchObj;
  8. import cn.com.goldenwater.dcproj.param.TacInspYearBatchObjParam;
  9. import com.github.pagehelper.PageInfo;
  10. import java.util.List;
  11. /**
  12. * @author lune
  13. * @date 2019-9-6
  14. */
  15. public interface TacInspYearBatchObjService extends CrudService<TacInspYearBatchObj, TacInspYearBatchObjParam> {
  16. List<TacInspYearBatchObjDto> getObjList(TacInspYearBatchObjParam tacInspYearBatchObjParam);
  17. List<TacInspYearBatchObjDto> objslistbybatch(TacInspYearBatchObjParam tacInspYearBatchObjParam);
  18. int insertBatchObj(TacObjDto dto);
  19. PageInfo<TacInspYearBatchObjDto> getObjPage(TacInspYearBatchObjParam tacInspYearBatchObjParam);
  20. int cleanObjById(TacInspYearBatchObjParam tacInspYearBatchObjParam);
  21. List<TacAttPawpBase> getBaseNotInGroupByGroupId(TacInspYearBatchObjParam param);
  22. PageInfo<TacAttPawpBase> getBaseNotInGroupPageByGroupId(TacInspYearBatchObjParam param);
  23. BisInspAllNode getObjTreeList(TacInspYearBatchObjParam param);
  24. List<TacInspYearBatchObjDto> getObjListByPersId(TacInspYearBatchObjParam param);
  25. PageInfo<TacInspYearBatchObjDto> getObjPageByPersId(TacInspYearBatchObjParam param);
  26. List<TacInspYearBatchObjDto> getObjListByNameAndYear(TacInspYearBatchObjParam param);
  27. // ------------------------- 自定方法 -------------------------
  28. }