forked from luyan/epmet-cloud-lingshan
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
337 B
16 lines
337 B
4 years ago
|
package com.epmet.service;
|
||
|
|
||
|
import com.epmet.dto.result.VolunteerDistributionResultDTO;
|
||
|
|
||
|
/**
|
||
|
* @Description 志愿者service
|
||
|
* @Author wangxianzhang
|
||
|
* @Date 2021/12/10 5:48 下午
|
||
|
* @Version 1.0
|
||
|
*/
|
||
|
public interface VolunteerService {
|
||
|
|
||
|
VolunteerDistributionResultDTO getVolunteerDistributionAndLegends(String customerId);
|
||
|
|
||
|
}
|