package com.jsowell.pile.service; import com.jsowell.pile.domain.ClearingBillInfo; import com.jsowell.pile.dto.GetClearingBillDTO; import com.jsowell.pile.vo.web.MerchantClearingBillVO; import java.util.List; public interface ClearingBillInfoService { int deleteByPrimaryKey(Integer id); int insert(ClearingBillInfo record); int insertSelective(ClearingBillInfo record); ClearingBillInfo selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(ClearingBillInfo record); int updateByPrimaryKey(ClearingBillInfo record); List selectByMerchantId(String merchantId, String billStatus); void updateStatus(List clearingBillIds, String billStatus, String withdrawCode); /** * 后管用 查询运营商账单列表 * * @param dto * @return */ List getMerchantClearingBillList(GetClearingBillDTO dto); int insertOrUpdate(ClearingBillInfo record); int insertOrUpdateSelective(ClearingBillInfo record); int updateBatch(List list); int updateBatchSelective(List list); int batchInsert(List list); ClearingBillInfo selectByMerchantIdAndTradeDate(String merchantId, String tradeDate); List selectByWithdrawCode(String withdrawCode); }