|
@ -18,9 +18,13 @@ |
|
|
package com.epmet.dao; |
|
|
package com.epmet.dao; |
|
|
|
|
|
|
|
|
import com.epmet.commons.mybatis.dao.BaseDao; |
|
|
import com.epmet.commons.mybatis.dao.BaseDao; |
|
|
|
|
|
import com.epmet.dto.form.HomeDesignByCustomerFormDTO; |
|
|
|
|
|
import com.epmet.dto.result.CommonComponentDesignResultDTO; |
|
|
import com.epmet.entity.CustomerHomeDetailEntity; |
|
|
import com.epmet.entity.CustomerHomeDetailEntity; |
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
|
|
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 客户首页详情表 |
|
|
* 客户首页详情表 |
|
|
* |
|
|
* |
|
@ -29,5 +33,5 @@ import org.apache.ibatis.annotations.Mapper; |
|
|
*/ |
|
|
*/ |
|
|
@Mapper |
|
|
@Mapper |
|
|
public interface CustomerHomeDetailDao extends BaseDao<CustomerHomeDetailEntity> { |
|
|
public interface CustomerHomeDetailDao extends BaseDao<CustomerHomeDetailEntity> { |
|
|
|
|
|
List<CommonComponentDesignResultDTO> getCustomerHomeDetailComponent(HomeDesignByCustomerFormDTO form); |
|
|
} |
|
|
} |