forked from rongchao/epmet-cloud-rizhao
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.
26 lines
637 B
26 lines
637 B
package com.epmet.service;
|
|
|
|
import com.epmet.dto.result.HomeUserBriefResultDTO;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @Description
|
|
* @Author zhaoqifeng
|
|
* @Date 2022/5/31 16:21
|
|
*/
|
|
public interface MyHomeService {
|
|
|
|
/**
|
|
* 查询家庭成员
|
|
*
|
|
* @param houseCode 房屋编码
|
|
* @param customerId
|
|
* @return java.util.List<com.epmet.dto.result.HomeUserBriefResultDTO>
|
|
* @author work@yujt.net.cn
|
|
* @date 2022/6/1/0001 16:12
|
|
*/
|
|
List<HomeUserBriefResultDTO> selectListHomeMember(String houseCode, String customerId);
|
|
}
|
|
|