| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.dto.TacCountDto;
- import cn.com.goldenwater.dcproj.model.TacInspYearBatch;
- import cn.com.goldenwater.dcproj.param.TacInspYearBatchParam;
- import com.github.pagehelper.PageInfo;
- import org.springframework.web.multipart.MultipartFile;
- import java.util.List;
- import java.util.Map;
- /**
- * @author lune
- * @date 2019-9-6
- */
- public interface TacInspYearBatchService extends CrudService<TacInspYearBatch, TacInspYearBatchParam> {
- // ------------------------- 自定方法 -------------------------
- List<TacInspYearBatch> getTacInspYearBatchList(TacInspYearBatchParam tacInspYearBatchParam);
- PageInfo<TacInspYearBatch> getTacInspYearBatchPage(TacInspYearBatchParam tacInspYearBatchParam);
- TacInspYearBatch getTacInspYearBatchById(String id, String province);
- int cleanAllObjByYearBatchId(String yearBatchId);
- int updateYearBatch(TacInspYearBatch tacInspYearBatch);
- int deleteYearBatchAllObj(String yearBatchId, String province);
- TacInspYearBatch getCurrTacInspBatch(TacInspYearBatchParam tacInspYearBatchParam);
- List<TacInspYearBatch> getTacInspBatchByPersId(TacInspYearBatchParam tacInspYearBatchParam);
- List<TacInspYearBatch> getBatchList(TacInspYearBatchParam tacInspYearBatchParam);
- PageInfo<TacInspYearBatch> getBatchPage(TacInspYearBatchParam tacInspYearBatchParam);
- List<TacCountDto> countGroupAndPers(TacInspYearBatchParam tacInspYearBatchParam);
- List<TacCountDto> countRoleTypeAndPers(TacInspYearBatchParam tacInspYearBatchParam);
- List<TacCountDto> countArea(TacInspYearBatchParam tacInspYearBatchParam);
- TacCountDto getAllCountPers(TacInspYearBatchParam tacInspYearBatchParam);
- Map<String,Object> uploadAuditExcel(MultipartFile file, TacInspYearBatchParam tacInspYearBatchParam);
- }
|