8 changed files with 77 additions and 25 deletions
@ -0,0 +1,18 @@ |
|||||
|
package com.epmet.dataaggre.service.epmetmessage; |
||||
|
|
||||
|
import com.epmet.dataaggre.dto.govorg.form.ReceiversFormDTO; |
||||
|
import com.epmet.dataaggre.dto.govorg.result.ReceiversResultDTO; |
||||
|
|
||||
|
/** |
||||
|
* @author Administrator |
||||
|
*/ |
||||
|
public interface EpmetMessageService { |
||||
|
/** |
||||
|
* @Description 获取已读未读人员列表 |
||||
|
* @Param formDTO |
||||
|
* @Return {@link ReceiversResultDTO} |
||||
|
* @Author zhaoqifeng |
||||
|
* @Date 2021/8/19 14:56 |
||||
|
*/ |
||||
|
ReceiversResultDTO getReceiverList(ReceiversFormDTO formDTO); |
||||
|
} |
@ -0,0 +1,32 @@ |
|||||
|
package com.epmet.dataaggre.service.epmetmessage.impl; |
||||
|
|
||||
|
import com.epmet.commons.dynamic.datasource.annotation.DataSource; |
||||
|
import com.epmet.dataaggre.constant.DataSourceConstant; |
||||
|
import com.epmet.dataaggre.dto.govorg.form.ReceiversFormDTO; |
||||
|
import com.epmet.dataaggre.dto.govorg.result.ReceiversResultDTO; |
||||
|
import com.epmet.dataaggre.service.epmetmessage.EpmetMessageService; |
||||
|
import lombok.extern.slf4j.Slf4j; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author zhaoqifeng |
||||
|
* @Date 2021/8/19 15:23 |
||||
|
*/ |
||||
|
@Service |
||||
|
@DataSource(DataSourceConstant.EPMET_MESSAGE) |
||||
|
@Slf4j |
||||
|
public class EpmetMessageServiceImpl implements EpmetMessageService { |
||||
|
/** |
||||
|
* @param formDTO |
||||
|
* @Description 获取已读未读人员列表 |
||||
|
* @Param formDTO |
||||
|
* @Return {@link ReceiversResultDTO} |
||||
|
* @Author zhaoqifeng |
||||
|
* @Date 2021/8/19 14:56 |
||||
|
*/ |
||||
|
@Override |
||||
|
public ReceiversResultDTO getReceiverList(ReceiversFormDTO formDTO) { |
||||
|
return null; |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue