6 changed files with 222 additions and 1 deletions
@ -1,10 +1,48 @@ |
|||||
package com.epmet.service.evaluationindex.extract.toscreen; |
package com.epmet.service.evaluationindex.extract.toscreen; |
||||
|
|
||||
/** |
/** |
||||
* 先进模范数据抽取到大屏表screen_pioneer_data |
* 先进模范数据抽取到大屏表 screen_pioneer_data |
||||
* |
* |
||||
* @author yinzuomei@elink-cn.com |
* @author yinzuomei@elink-cn.com |
||||
* @date 2020/9/22 11:25 |
* @date 2020/9/22 11:25 |
||||
*/ |
*/ |
||||
public interface PioneerDataExtractService { |
public interface PioneerDataExtractService { |
||||
|
/** |
||||
|
* @return void |
||||
|
* @param customerId |
||||
|
* @param dateId |
||||
|
* @author yinzuomei |
||||
|
* @description 总方法入口 |
||||
|
* @Date 2020/9/22 14:17 |
||||
|
**/ |
||||
|
void extractPioneerData(String customerId, String dateId); |
||||
|
|
||||
|
|
||||
|
|
||||
|
// 机关级别(社区级:community,
|
||||
|
// 乡(镇、街道)级:street,
|
||||
|
// 区县级: district,
|
||||
|
// 市级: city
|
||||
|
// 省级:province)
|
||||
|
|
||||
|
/** |
||||
|
* @param customerId |
||||
|
* @param dateId |
||||
|
* @return void |
||||
|
* @author yinzuomei |
||||
|
* @description 网格级别的 党建引领-先锋模范数据 |
||||
|
* @Date 2020/9/22 13:46 |
||||
|
**/ |
||||
|
void extractGridPioneerData(String customerId, String dateId); |
||||
|
|
||||
|
// 社区、街道、区县、市级别、省级
|
||||
|
void extractCommunityPioneerData(String customerId, String dateId); |
||||
|
|
||||
|
void extractStreetPioneerData(String customerId, String dateId); |
||||
|
|
||||
|
void extractDistrictPioneerData(String customerId, String dateId); |
||||
|
|
||||
|
void extractCityPioneerData(String customerId, String dateId); |
||||
|
|
||||
|
void extractProvincePioneerData(String customerId, String dateId); |
||||
} |
} |
||||
|
Loading…
Reference in new issue