42 lines
887 B
Java
42 lines
887 B
Java
package com.njcn.syncdata.service;
|
|
|
|
import com.njcn.db.service.IReplenishMybatisService;
|
|
import com.njcn.syncdata.pojo.po.PowerDistributionarea;
|
|
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* <p>
|
|
* 服务类
|
|
* </p>
|
|
*
|
|
* @author hongawen
|
|
* @since 2022-10-14
|
|
*/
|
|
public interface IPowerDistributionareaService extends IReplenishMybatisService<PowerDistributionarea> {
|
|
|
|
/**
|
|
* 登录获取token
|
|
* @return
|
|
*/
|
|
String LoginToken();
|
|
|
|
/**
|
|
* 获取数据中台数据
|
|
* @return
|
|
*/
|
|
String adsList();
|
|
|
|
/**
|
|
* 通用资源数据中台数据查询
|
|
* @param token 数据token
|
|
* @param psrType 对应需要查询的表
|
|
* @param fieldName 数据的列名
|
|
* @param fieldValue 数据id集合
|
|
* @return
|
|
*/
|
|
Map getResourceData(String token,String psrType,Integer num, String fieldName,String fieldValue);
|
|
|
|
String insertData();
|
|
}
|