2023-05-10 18:15:25 +08:00
|
|
|
package com.cm.bigdata.service.kpi;
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
List<Map<String, Object>> listWgy(Map<String, Object> queryMap);
|
|
|
|
|
|
|
|
|
|
|
|
}
|