43 lines
1.0 KiB
Java
43 lines
1.0 KiB
Java
package com.njcn.jbsyncdata.service;
|
|
|
|
import com.njcn.jbsyncdata.pojo.DisPhotovoltaic10Excel;
|
|
import com.njcn.jbsyncdata.pojo.DisPhotovoltaic380Excel;
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author wr
|
|
* @description
|
|
* @date 2023/9/26 16:09
|
|
*/
|
|
public interface DisPhotovoltaicService {
|
|
|
|
/**
|
|
* @param list
|
|
* @param response
|
|
* @Description: 10KV导入
|
|
* @Author: wr
|
|
* @Date: 2023/10/10 16:01
|
|
*/
|
|
void SavaPmsPowerGenerationUser10KV(List<DisPhotovoltaic10Excel> list, HttpServletResponse response);
|
|
|
|
/**
|
|
* @param list
|
|
* @param response
|
|
* @Description: 380kv导入
|
|
* @Author: wr
|
|
* @Date: 2023/10/10 16:01
|
|
*/
|
|
void SavaPmsPowerGenerationUser380KV(List<DisPhotovoltaic380Excel> list, HttpServletResponse response);
|
|
|
|
/**
|
|
* @Description: 配网表数据新增
|
|
* @param
|
|
* @return: java.lang.Boolean
|
|
* @Author: wr
|
|
* @Date: 2023/10/11 14:31
|
|
*/
|
|
Boolean savePmsDistributionMonitor();
|
|
}
|