mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
42 lines
1.4 KiB
Java
42 lines
1.4 KiB
Java
package com.jsowell.pile.mapper;
|
|
|
|
import com.jsowell.pile.domain.ClearingBillInfo;
|
|
import com.jsowell.pile.dto.GetClearingBillDTO;
|
|
import com.jsowell.pile.vo.web.MerchantClearingBillVO;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
public interface ClearingBillInfoMapper {
|
|
int deleteByPrimaryKey(Integer id);
|
|
|
|
int insertSelective(ClearingBillInfo record);
|
|
|
|
ClearingBillInfo selectByPrimaryKey(Integer id);
|
|
|
|
int updateByPrimaryKeySelective(ClearingBillInfo record);
|
|
|
|
int updateBatch(List<ClearingBillInfo> list);
|
|
|
|
int updateBatchSelective(List<ClearingBillInfo> list);
|
|
|
|
int batchInsert(@Param("list") List<ClearingBillInfo> list);
|
|
|
|
int insertOrUpdate(ClearingBillInfo record);
|
|
|
|
int insertOrUpdateSelective(ClearingBillInfo record);
|
|
|
|
List<ClearingBillInfo> selectByMerchantId(@Param("merchantId") String merchantId, @Param("billStatus") String billStatus, @Param("tradeDate") String tradeDate);
|
|
|
|
void updateStatus(@Param("clearingBillIds") List<Integer> clearingBillIds, @Param("billStatus") String billStatus, @Param("withdrawCode") String withdrawCode);
|
|
|
|
/**
|
|
* 后管用 查询运营商账单列表
|
|
*
|
|
* @param dto
|
|
* @return
|
|
*/
|
|
List<MerchantClearingBillVO> getMerchantClearingBillList(GetClearingBillDTO dto);
|
|
|
|
List<ClearingBillInfo> selectByWithdrawCode(@Param("withdrawCode") String withdrawCode);
|
|
} |