package com.tzld.piaoquan.api.service; import com.tzld.piaoquan.api.model.vo.GhDetailVo; import com.tzld.piaoquan.growth.common.common.base.CommonResponse; import com.tzld.piaoquan.growth.common.model.po.GhDetail; import com.tzld.piaoquan.growth.common.utils.page.Page; import java.util.List; public interface GhDetailService { CommonResponse> getGhDetailList(Integer pageNum, Integer pageSize, String accountId, String accountName); CommonResponse addGhDetail(GhDetailVo ghDetailVo); CommonResponse updateDetail(GhDetailVo ghDetailVo); CommonResponse deleteDetail(Long id); GhDetail getGhDetailByGhIdType(String ghId, Integer type); List getByChannel(String channel); }