mitao
2025-01-20 93fec20f3cf9d7801eeaa10acef4687ed110d435
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.zzg.system.service.state;
 
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.github.pagehelper.PageInfo;
import com.zzg.common.core.domain.entity.state.StateSettlement;
import com.zzg.system.domain.bo.ImportSettlementBO;
import com.zzg.system.domain.bo.SettlementBO;
import com.zzg.system.domain.bo.SettlementDetailBO;
import com.zzg.system.domain.bo.StateExecutionBO;
import com.zzg.system.domain.vo.*;
 
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.List;
import java.util.Map;
 
public interface StateSettlementService extends IService<StateSettlement> {
 
    PageInfo<HouseholdVO> listSettleData(SettlementBO settlementBO);
 
    List<HouseholdVO> exportSettleData(SettlementBO settlementB, HttpServletResponse response) throws IOException;
 
    SettlementDetailPageVO listDetailData(SettlementDetailBO settlementDetailBO);
 
    SettlementDetailPageVO listDetailUpdateData(SettlementDetailBO settlementDetailBO);
 
    SettlementSumVO sumSettleData(String projectName);
 
    PageInfo<StateExecutionDetailVO> listExecution(StateExecutionBO executionBO);
 
    List<StateExecutionDetailVO> exportExecution(StateExecutionBO executionB);
 
    Map<String, Map<Integer, ProjectExecutionSumVO>> listProjectExecutionByProjectId(List<String> projectIdList, String projectStreet);
 
    String generateBatchName(String projectId,String compensationType);
 
    List<String> listBatchName(String projectId);
 
    void saveOrUpdateSettlement(List<StateSettlement> stateSettlement);
 
    void workflowSubmit(List<String> settlementIds);
 
    void updateSettleStatus(List<String> recordId, Integer status);
 
    void stateSettlementImport(ImportSettlementBO importSettlementBO) throws IOException;
 
    void deleteSettlement(String id);
}