| | |
| | | |
| | | import com.doumee.biz.zbom.model.zhongtai.*; |
| | | import com.doumee.biz.zbom.model.zhongtai.response.*; |
| | | import com.doumee.dao.web.response.ZSZXCatalogResponse; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @date 2024/07/04 14:40 |
| | | */ |
| | | public interface GetZhongTaiDataService { |
| | | |
| | | |
| | | ZSZXCatalogResponse getZSZXCatalogs(Long userId,String userType); |
| | | |
| | | /** |
| | | * 分类数据 |
| | |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | ZTProductInfoResponse getProductInfo(String id,String userType,Long userId); |
| | | ZTProductInfoResponse getProductInfo(String id,String userType,Long userId,String salesId); |
| | | |
| | | /** |
| | | * 中台 - 全屋资讯详情 |
| | |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | ZTCaseInfoResponse getWholecaseInfo(String id,String userType,Long userId); |
| | | ZTCaseInfoResponse getWholecaseInfo(String id,String userType,Long userId,String salesId); |
| | | |
| | | /** |
| | | * 中台 - 产品资讯详情 |
| | |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | ZTProductNewsInfoResponse getProductNewsInfo(String id,String userType,Long userId); |
| | | ZTProductNewsInfoResponse getProductNewsInfo(String id,String userType,Long userId,String salesId); |
| | | |
| | | /** |
| | | * 中台 - 实景案例 |
| | |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | ZTRealcaseInfoResponse getRealcaseInfo(String id,String userType,Long userId); |
| | | ZTRealcaseInfoResponse getRealcaseInfo(String id,String userType,Long userId,String salesId); |
| | | |
| | | /** |
| | | * 中台 - 我的收藏/喜欢列表 |
| | | * @return |
| | | */ |
| | | ZTBasePageResponse<ZTCollectLikeInfoResponse> collectLikePage(ZTCollectLikeRequest ztCollectLikeRequest); |
| | | |
| | | /** |
| | | * 中台 - 批量添加喜欢给客户 |
| | | * @param param |
| | | * @return |
| | | */ |
| | | void batchAddLike(ZTBatchAddListRequest param); |
| | | |
| | | /** |
| | | * 中台 客户绑定导购 |
| | | * @param ztCustomerBindingUsersRequest |
| | | */ |
| | | void customerBinDingUsers(ZTCustomerBindingUsersRequest ztCustomerBindingUsersRequest); |
| | | } |