2023-05-10 18:15:25 +08:00
|
|
|
package com.cm.bigdata.service.kpi;
|
|
|
|
|
2023-05-12 18:17:20 +08:00
|
|
|
import com.cm.bigdata.pojo.dtos.kpi.KpiKhxzWgyDTO;
|
|
|
|
import com.cm.bigdata.pojo.vos.kpi.KpiWgyVO;
|
|
|
|
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
import java.io.IOException;
|
2023-05-10 18:15:25 +08:00
|
|
|
import java.util.List;
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
public interface IKpiKhxzService {
|
|
|
|
|
2023-05-11 22:02:10 +08:00
|
|
|
void update(Integer khYear, Integer khMonth);
|
2023-05-10 18:15:25 +08:00
|
|
|
|
|
|
|
|
2023-05-12 18:17:20 +08:00
|
|
|
List<KpiKhxzWgyDTO> listWgy(Map<String, Object> queryMap);
|
|
|
|
|
|
|
|
|
|
|
|
void exportWgy(HttpServletResponse httpServletResponse, Map<String, Object> queryMap) throws IOException;
|
2023-05-10 18:15:25 +08:00
|
|
|
|
2023-05-12 18:17:20 +08:00
|
|
|
void updateWgy(Integer wgyLevel, KpiWgyVO kpiWgyVO);
|
2023-05-10 18:15:25 +08:00
|
|
|
|
|
|
|
}
|