forked from rongchao/epmet-cloud-rizhao
10 changed files with 235 additions and 7 deletions
@ -0,0 +1,17 @@ |
|||
package com.epmet.constant; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/9/22 2:19 下午 |
|||
*/ |
|||
public interface ScreenConstant { |
|||
|
|||
String COMMUNITY = "community"; |
|||
|
|||
String LEVEL = "level"; |
|||
|
|||
String STR_NULL = ""; |
|||
|
|||
String ENGLISH_COMMA = ","; |
|||
|
|||
} |
|||
@ -0,0 +1,33 @@ |
|||
package com.epmet.dto.screen.result; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonIgnore; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.ArrayList; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/9/22 2:00 下午 |
|||
*/ |
|||
@Data |
|||
public class TreeResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 3860368744336541373L; |
|||
|
|||
/** |
|||
* 显示名称 |
|||
*/ |
|||
private String agencyId; |
|||
|
|||
/** |
|||
* agencyId下拉框value |
|||
*/ |
|||
private String pid; |
|||
|
|||
private String pids; |
|||
|
|||
private String level; |
|||
} |
|||
|
|||
@ -0,0 +1,19 @@ |
|||
package com.epmet.service.evaluationindex.extract.toscreen; |
|||
|
|||
/** |
|||
* @Desciption 党员基本情况 |
|||
* @Author zxc |
|||
* @DateTime 2020/9/22 11:14 上午 |
|||
*/ |
|||
public interface PartyBaseInfoService { |
|||
|
|||
/** |
|||
* @Description 统计基层党建-党员基本情况 |
|||
* @param customerId |
|||
* @param dateId |
|||
* @author zxc |
|||
* @date 2020/9/22 1:22 下午 |
|||
*/ |
|||
Boolean statsPartyMemberBaseInfoToScreen(String customerId,String dateId); |
|||
|
|||
} |
|||
@ -0,0 +1,29 @@ |
|||
package com.epmet.service.evaluationindex.extract.toscreen.impl; |
|||
|
|||
import com.epmet.service.evaluationindex.extract.toscreen.PartyBaseInfoService; |
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.springframework.stereotype.Service; |
|||
|
|||
/** |
|||
* @Desciption 党员基本情况 |
|||
* @Author zxc |
|||
* @DateTime 2020/9/22 11:15 上午 |
|||
*/ |
|||
@Service |
|||
@Slf4j |
|||
public class PartyBaseInfoServiceImpl implements PartyBaseInfoService { |
|||
|
|||
|
|||
|
|||
/** |
|||
* @Description 统计基层党建-党员基本情况 |
|||
* @param customerId |
|||
* @param dateId |
|||
* @author zxc |
|||
* @date 2020/9/22 1:22 下午 |
|||
*/ |
|||
@Override |
|||
public Boolean statsPartyMemberBaseInfoToScreen(String customerId, String dateId) { |
|||
return null; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue