1.台账数据导入
2.pom文件调整
This commit is contained in:
@@ -1,12 +1,34 @@
|
||||
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 class DisPhotovoltaicService {
|
||||
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);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user